Please enable JavaScript.
Coggle requires JavaScript to display documents.
Locating Files unnamed (Linux 652px-Tux.svg (locate command (pre-built…
Locating Files
Linux
Case Sensitive :check:
locate command
pre-built database
updatedb to update :shell:
less powerful
fast :fire:
find command
filter results
by type
find / -type d :shell:
c
haracter device
d
irectory
f
ile
by name :smiley:
find / -name "myfile" :shell:
-iname to ignore case
by size :
find / -size +10c :shell:
characters/bytes
kilobytes
Megabytes
+greater/-less
by modification time
by owner :silhouette:
find / -user matt :shell:
by permission :lock:
find / -perm 755 :shell:
chmod notation
-not to invert
execute commands :
end with a protected semicolon
find / -user "matt" -exec cat {} \; :shell:
{} represents each file
Windows
Powershell
Command Prompt
Not Case Sensitive :warning: