ls
commandfind
command, its predicates, and other utilities to create more targeted findsCommand | Purpose |
file |
Determines the file type. |
find |
Searches the filesystem for files meeting certain criteria. |
head |
Displays the first part (10 lines by default) of each given file. |
ln –s |
Creates a symbolic link. |
ls –F |
Lists file type information. |
wc |
Displays a character, word, or line count for a specified file. |
tail |
Displays the last part (10 lines by default) of each given file. |
xargs |
Arranges for the command to read arguments from standard input. This command is used to pipe output from find into other commands.
|