I'm using tcsh; I want to run some snippet from sh on the command line, which itself contains a perl snippet, which contains some strings that are to be printed.
This results in three levels of parentheses, but there are only two available — " and '.
Is there a way around?
tcsh# sh -c 'while (true); do mtr --order "SRL BGAWV M" …; hping --icmp-ts --count 12 … | perl -ne '... if (/tsrtt=(\d+)/) {print $0,"\t"…}' ; done'
To include a single quote inside of single quotes, use
'\''
. e.g.becomes
In this particular case, an alternative is to replace
with
so you'd get
I'd just write the whole thing in Perl