“Linux -Befehl finden” Code-Antworten

Finden Sie Linux

# list all files in current folder and subfolders with given pattern
find . -name "pattern"
# list all files that match pattern 1 or pattern2
find . -type d -name pattern1 -or -name pattern2
# list all files that match pattern excluding a path
find . -type d -name 'pattern' -not -path 'excluded_path/*'
# list all files with size > 100k and size < 1M
find . -type f -size +100k -size -1M
# list all files last edited in last 3 days
find . -type f -mtime +3
Armandres

Finden Sie Linux

find . -name "foo*"
Difficult Dotterel

finden Sie unter Linux

$ find [where to start searching from]
 [expression determines what to find] [-options] [what to find]
 
 $ find ./GFG -name sample.txt 
Pleasant Petrel

Befehl in Linux suchen

find /etc/dovecot/conf.d -name "*.conf" -mtime 5Copy
Outrageous Otter

Linux -Befehl finden

find / -name .profile -print
find . -perm 0600 -print
find ./test ./logs -name failed*.* -type f
find . -ctime 1 -print
find . -name ‘*find*’ -print
David Cao

Befehl in Linux suchen

find /var/log/nginx -type f -name '*.log.gz'Copy
Outrageous Otter

Ähnliche Antworten wie “Linux -Befehl finden”

Fragen ähnlich wie “Linux -Befehl finden”

Weitere verwandte Antworten zu “Linux -Befehl finden” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen