Your cart is currently empty!
Linux: Find and Delete files
Find the files you want to delete:
find . -type f find . -not -type d find . ! -type d
f
: a regular filed
: directoryl
: symbolic linkc
: character devicesb
: block devicesp
: named pipe (FIFO)s
: socket
find . -type f | xargs cat
for f in `find . -type f`; do cat $f; done
References:
Leave a Reply