Just unpacked a zip file named CAT.zip and it exploded into hundreds of files and directories.
This is what I did to get rid of the contents of the extracted archive excepting the archive itself.
Warning: Don't do this in directory that has many files you want to keep
# delete everything except a single file ls -1 | grep -v CAT.zip | xargs rm -rf # delete everything except multiple files ls -1 | grep -v -e 'CAT.zip' -e 'skip.txt' | xargs rm -rf
0 Comments