in reply to Re^4: how to use perl variable in system command to run on unix
in thread how to use perl variable in system command to run on unix

Because $9 is a variable in Perl, the ninth capture in a regular expression. Since you don't have a regex before, it is an undefined variable in your case, so il will be omitted altogether from your command line. If you escape the $ sign, you say that you want a $ sign, not a variable called $9. Then it is not interpolated and passed to awk correctly.

  • Comment on Re^5: how to use perl variable in system command to run on unix

Replies are listed 'Best First'.
Re^6: how to use perl variable in system command to run on unix
by tousifp (Novice) on Sep 04, 2013 at 11:57 UTC

    Thanks buddy.