Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: walnz
  • Order by date
  1. walnz

    Help on "ls -l $* ¦ awk '{ print $9}'+ grep $9 pattern>> result"

    You can use AWK to do the regular expression match without needing to subsequently grep - e.g. ... ls -l * | awk '/regexp/ print $9' or grepping a specific field .. ls -l * | awk '$n =~ /regexp/ print $9' sorry it's been a while but I think syntax is correct

Part and Inventory Search

Back
Top