简体   繁体   中英

gawk error on windows command prompt

I am trying to run a perl script as shown below but am met with error as explained here.

$filenames = ls -l newdir|grep smlist|gawk -F" " '{ print \\$8 }' ;

Here is the error I get:

The system cannot find the path specified. gawk: '{ gawk: ^ invalid char ''' in expression

Please help out with possible solutions.

gawk , grep and ls are not Windows native commands.

To use them in the way you have shown, you need them all installed in the current folder or in folders that are added to the PATH

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM