COHERENT help

This page displays the COHERENT help information for find.

Listing of available help pages


find -- Search for files satisfying a pattern

find directory ... [expression ...]

Expression:
     -atime n  File has been accessed in n days
     -ctime n  File's i-node has been changed in n days
     -exec cmd Command cmd is successful
     -group gn File belongs to group gn
     -inum n   File has i-node n
     -links n  File has n links to it
     -mtime n  File has been modified within n days
     -name pattern
               File name matches pattern (shell conventions)
     -newerfile
               File has been modified since file
     -nop      Always true; does nothing
     -ok cmd   Like -exec, except it asks
     -perm octal
               File permissions are octal
     -print    Always true; prints current path name
     -size n   File is n blocks long
     -type c   File matches type (c may be [bcdfmp])
     -user uname
               uname owns file
     exp -a exp exp
               Both expressions are true
     exp -o exp exp
               One of the expressions is true
     ! exp     Expression is false
     (exp)     Parentheses for grouping

If no expression is specified, -print is assumed.