I tried to search files and zip them with the following commmand
find . regexpression -exec zip {} \;
however it is not working. How can i do this?
|
I tried to search files and zip them with the following commmand find . regexpression -exec zip {} \; however it is not working. How can i do this? |
|||
|
|
|
The command you use will run zip on each file separately, try this:
The
|
|||||||||||
|
|
You can also provide the names as the result of your find command:
This is a feature of the shell you are using. You can search for "backticks" to determine how your shell handles this. |
|||
|
|
|
Your response is close, but this might work better:
That will put all the matching files in one zip file called filename.zip. You don't have to worry about special characters in the filename (like a line break), which you would if you piped the results. |
|||
|
|