J
Jose Luis
Hi,
Given the string "one;two;three;four...", is there a easy way to
print "one":
$ echo "one;two;three;four..."|perl -e 'while(<>){$_ =~ /^(.*)(\
(.*)
$/ && print $1}'
one;two;three
Thanks in advance,
Jose Luis
Given the string "one;two;three;four...", is there a easy way to
print "one":
$ echo "one;two;three;four..."|perl -e 'while(<>){$_ =~ /^(.*)(\
$/ && print $1}'
one;two;three
Thanks in advance,
Jose Luis