mirror of
https://github.com/cheat/cheat.git
synced 2025-09-02 10:08:30 +02:00
Explicitly mark comment lines in builtin sheets.
This commit is contained in:
@ -1,14 +1,14 @@
|
||||
To find files by extension (ex: .jpg):
|
||||
# To find files by extension (ex: .jpg):
|
||||
find . -iname "*.jpg"
|
||||
|
||||
To find directories:
|
||||
# To find directories:
|
||||
find . -type d
|
||||
|
||||
To find files:
|
||||
# To find files:
|
||||
find . -type f
|
||||
|
||||
To find files by octal permission:
|
||||
# To find files by octal permission:
|
||||
find . -type f -perm 777
|
||||
|
||||
To find files with setuid bit set:
|
||||
# To find files with setuid bit set:
|
||||
find . -xdev \( -perm -4000 \) -type f -print0 | xargs -0 ls -l
|
||||
|
Reference in New Issue
Block a user