From 07b77aba05b9f030bb88aca85ea6f9d95b3c09d6 Mon Sep 17 00:00:00 2001 From: Hari Sekhon Date: Wed, 24 Jul 2024 01:33:22 +0300 Subject: [PATCH] updated java_show_classpath.pl --- java_show_classpath.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java_show_classpath.pl b/java_show_classpath.pl index 029f93c..d94c99b 100755 --- a/java_show_classpath.pl +++ b/java_show_classpath.pl @@ -119,7 +119,7 @@ ($) /^java.class.path\s*=\s*/ or next; s/^java.class.path\s*=\s*//; my $count = 0; - foreach(split(/\\:/, $_)){ + foreach(split(/\\?:/, $_)){ next if /^\s*$/; print "classpath: $_\n"; $count++;