Copy all Txt Files
Tagged with: command, copy, file, find, Linux, tag, xargs
Sunday, May 18th, 2008 11:15 PM
Find and copy all files with ‘.txt’ extention from a directory to another
find /home/binnyva -name '*.txt' | xargs cp -av --target-directory=/home/backup/ --parents