linux:findfiles
This is an old revision of the document!
Find Files on Linux
a) Find Files on Linux with find
find / -name yourfiles
b) Find Directory on Linux with find
find / -name yourdirectory -type d
c) Find File on Linux and execute
find / -name yourfile -exec rm {} \;
d) Find Directory on Linux and execute
find / -name yourdirectory -type d -exec rm {} \;
e) Find Files on Linux with locate
updatedb locate yourfiles
e) Find Files on Linux with slocate security
updatedb
slocate yourfiles
linux/findfiles.1465288770.txt.gz ยท Last modified: 2016/06/07 10:39 by admin