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)
Read the rest of this entry »