Jul 12, 2003 #1 job357 Technical User Sep 16, 2002 106 US Hi, I am try to use find to tar all files in my cwd as follows: find . -name *html -print -exec tar cvf test.tar {} \; 2>/dev/null I want all files with an html extention as a part of their file name to be in one big tar ball. Thanks.
Hi, I am try to use find to tar all files in my cwd as follows: find . -name *html -print -exec tar cvf test.tar {} \; 2>/dev/null I want all files with an html extention as a part of their file name to be in one big tar ball. Thanks.
Jul 13, 2003 #2 Salem Programmer Apr 29, 2003 2,455 GB Try Code: tar cvf test.tar `find -name "*.html" -print` Upvote 0 Downvote
Jul 13, 2003 Thread starter #3 job357 Technical User Sep 16, 2002 106 US Salem, Thanks for you response, this works fine. Upvote 0 Downvote