08-08-2013, 08:35
|
מנהל פורומי "תכנות ובניית אתרים" ו"חומרה ורשתות"
|
|
חבר מתאריך: 25.10.01
הודעות: 42,777
|
|
אני עייף מדי כרגע מכדי לחשוב על זה, אז אם אתה מחפש בפשטות משהו שעובד ומוכן להשתמש גם ב grep על הדרך, אז:
קוד:
shimi@matrix ~/baz $ cat file2
in this line, this is a string
here is something that should never be displayed
all in all, the output of the script should just be 'line,'
shimi@matrix ~/baz $ cat file1
this is a string
this is not a string that we want
shimi@matrix ~/baz $ while read row; do grep "$row" file2 | awk '{print $3}'; done < file1
line,
shimi@matrix ~/baz $
|