Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by arwon

  1. arwon

    Using find to return filenames in quotes

    Using find and tar together can lead to trouble if the directory has nested sub-directories. find will write-out each qualifying file once - but it will also write-out each parent directory. tar will archive the qualifying file once for the file "entry" - and again for every...
  2. arwon

    tarring files from a list that was created with the find command

    nwo4life ... find and tar are an awkward mixture! Basically, this is what you want: find /dir/test/* -mtime +90 -print > backlist find /dir/testb/* -mtime +90 -print >>backlist tar cvf backlist.$(date +%d-%b-%Y).tar -I backlist HOWEVER - you will have trouble! find will write-out an entry...

Part and Inventory Search

Back
Top