in reply to getting the tail of a string
works, at least with the bash installed on this 'ere OS X box. What it does is single-quote all your perl up to and including the last $. It then ends the single-quoting, and immediately - with no intervening space - provides a single-quote. The single-quote is escaped so that the shell doesn't try to start a new quoted string and complain when it can't find the closing delimiter.perl -we '$x="/foo/bar/ncak.030610.141654";$x=~/.+\// && print $'\'
|
|---|