Unix: find and tar

Had to send copies of a bunch of log files, all with the same name in multiple, deep directories.

What I learned:
# find / -name something.log -print > something.txt
# tar -crzT something.txt -f something.tgz

Comments

Comments are closed.