find command (practical books’ dir copy)
Feb 03
2008
2008
Comments Off
Copy all those formats (pdf|chm|txt|html) from $HOME/Desktop to the current working directory:
find ~/Desktop/ -iname "*.pdf" \ -o -iname "*.chm" \ -o -iname "*.txt" \ -o -iname "*.html" \ -exec cp -v {} . \;