How to tar a list of files
If you want to tar a multiple files you must write a file containing a list of file to backup and the use this command:
cat listoffiles.txt | xargs tar czvf yourbackupname.tgz - or
tar zcvf yourbackupname.tgz $(cat listoffiles.txt)
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.