• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/14

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

14 Cards in this Set

  • Front
  • Back
find files
find directories
-type f
-type d
search root and 2 level down
-maxdepth 2
execute commands on files found
-exec some_command {} \;
find inode number
-inum
find files based on permission
-perm 777
not something option (eg not hidden files)
-not -name ".*"
Find files by comparing with the modification time of other file
-newer
find files by size
-size +100M or -100MB
find based on user, group
-user
-group
based on modified time 50 days back
-mtime 50 (eg +50 for greater, -50 less than)
based on accessed 50 days back
-atime 50
changed files in last 60 min
-cmin -60
accessed files in last 60 min
-amin -60
find an delete 100MB files
find / -size +100M -exec rm -f {} \;