2004年10月6日

for piping the output of one program in unix to another program's command line, (instead of input)
ls only files contents "test", (for checking the size of the file)
ls -al `grep -L test *`
or
str=`grep -L test *`
ls $str

沒有留言: