Advertisement
Guest User

Untitled

a guest
Jan 21st, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. EXPRESSION may consist of:
  2. -follow Follow symlinks
  3. -xdev Don't descend directories on other filesystems
  4. -maxdepth N Descend at most N levels. -maxdepth 0 applies
  5. tests/actions to command line arguments only
  6. -mindepth N Don't act on first N levels
  7. -name PATTERN File name (w/o directory name) matches PATTERN
  8. -iname PATTERN Case insensitive -name
  9. -path PATTERN Path matches PATTERN
  10. -regex PATTERN Path matches regex PATTERN
  11. -type X File type is X (X is one of: f,d,l,b,c,...)
  12. -perm NNN Permissions match any of (+NNN), all of (-NNN),
  13. or exactly NNN
  14. -mtime DAYS Modified time is greater than (+N), less than (-N),
  15. or exactly N days
  16. -mmin MINS Modified time is greater than (+N), less than (-N),
  17. or exactly N minutes
  18. -newer FILE Modified time is more recent than FILE's
  19. -inum N File has inode number N
  20. -user NAME File is owned by user NAME (numeric user ID allowed)
  21. -group NAME File belongs to group NAME (numeric group ID allowed)
  22. -depth Process directory name after traversing it
  23. -size N[bck] File size is N (c:bytes,k:kbytes,b:512 bytes(def.))
  24. +/-N: file size is bigger/smaller than N
  25. -links N Number of links is greater than (+N), less than (-N),
  26. or exactly N
  27. -print Print (default and assumed)
  28. -print0 Delimit output with null characters rather than
  29. newlines
  30. -exec CMD ARG ; Run CMD with all instances of {} replaced by the
  31. matching files
  32. -prune Stop traversing current subtree
  33. -delete Delete files, turns on -depth option
  34. (EXPR) Group an expression
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement