I'm using grep to generate a list of files I need to move:
grep -L -r 'Subject: \[SPAM\]' .
How can I pass this list to the mv command and move the files somewhere else?
|
|
The -Z means output with zeros (\0) after the filenames (so spaces are not used as delimeters).
means interpret \0 to be delimeters. Then
means replace {} with the filenames, so you get mv filenames DIR. |
|||
|
This alternative works where xargs is not availabe:
|
|||
|
|
|
This is what I use in Fedora Core 12:
|
|||
|
|
|
You can pass the result to the next command by using grep ... | xargs mv {} destination Check man xargs for more info. |
|||
|
|
|
There are several ways but here is a slow but failsafe one :
|
|||
|
|
|
Maybe this will work:
|
||||
|
|