in reply to perl to run awk and sed
Single quotes prevent variable interpolation: see perlopmy $cmd = q(awk 'BEGIN {FS="\t"}; {print $1}' | sed 's/.$//'); system $cmd;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: perl to run awk and sed
by deelinux (Novice) on Nov 30, 2015 at 17:33 UTC |