mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-14 08:01:16 +01:00
8dda6a9241
Created cheatsheets package to store the default sheets.
14 lines
290 B
Text
14 lines
290 B
Text
To find files by extension (ex: .jpg):
|
|
find . -iname "*.jpg"
|
|
|
|
To find directories:
|
|
find . -type d
|
|
|
|
To find files:
|
|
find . -type f
|
|
|
|
To find files by octal permission:
|
|
find . -type f -perm 777
|
|
|
|
To find files with setuid bit set:
|
|
find . -xdev \( -perm -4000 \) -type f -print0 | xargs -0 ls -l
|