Whereis,
Ls,
Stat,
Locate,
Symlink,
Chmod,
Chflags,
Glob,
Fts_open,
Xargs,
Which,
Find FIND(1) - General Commands Manual # FIND(1) - General Commands Manual
NAME # find - walk a file hierarchy
SYNOPSIS # find [-dHhLXx] [-f path] path … [expression]
DESCRIPTION # find recursively descends the directory tree for each path listed, evaluating an expression (composed of the “primaries” and “operators” listed below) in terms of each file in the tree. In the absence of an expression, -print is assumed. If an expression is given, but none of the primaries -delete, -exec, -execdir, -ls, -ok, -print, or -print0 are specified, the given expression is effectively replaced by ( given expression ) -print.
...
HIER(7) - Miscellaneous Information Manual # HIER(7) - Miscellaneous Information Manual
NAME # hier - layout of filesystems
DESCRIPTION # A sketch of the filesystem hierarchy.
/
Root directory.
/altroot/
Alternate (backup) location for the root (’/’) filesystem (see daily(8)).
/bin/
User utilities fundamental to both single and multi-user environments. These programs are statically compiled and therefore do not depend on any system libraries to run.
/bsd
Pure kernel executable (the operating system loaded into memory at boot-time).
...
WHEREIS(1) - General Commands Manual # WHEREIS(1) - General Commands Manual
NAME # whereis - locate programs
SYNOPSIS # whereis [-a] name …
DESCRIPTION # The whereis utility checks the standard binary directories for the specified name, printing out the paths of any it finds that are executable by the user.
The path searched is:
/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin
If the -a flag is given, whereis will return a list of all matches instead of just the first match.
...
WHICH(1) - General Commands Manual # WHICH(1) - General Commands Manual
NAME # which - locate a program file (or files) in the path
SYNOPSIS # which [-a] name …
DESCRIPTION # which takes a list of names and looks for the files which would be executed had these names been given as commands. Each argument is searched for along the user’s path.
If the -a flag is given, which will return a list of all matches instead of just the first match.
...