using tar to compress specific files in a directory named a certain way
Hi All,
I need to create a tar archive of only files that start with "60-", located in a directory with a lot of other files that I don't want in the archive.
I tried this but it doesn't work:
tar -zcvf backfill.tar.gz | grep "60-"
Can someone help?
Thanks
|