| basename |
|
Strip directory and suffix information from filenames. |
| cat |
|
Ex: cat < filename --- Effect: put keyboard input into the file. CTRL-D
to exit (end). |
| cmp |
|
Compare two files. |
| colrm |
|
Remove columns from a file. |
| column |
|
Columnate lists. |
| comm |
|
Ex: comm file1 file2 --- Effect compare the contents of file1 and file2
produces 3 columns of output. Lines in the first file, lines in second file,
lines in both files. |
| csplit |
|
Split a file into sections determined by context lines. |
| cut |
|
Remove sections from each line of files. |
| diff |
|
Show the differences between files. Ex: diff file1 file2 |
| diff3 |
|
Find differences between 3 files. |
| dirname |
|
Strip the non-directory suffix from a filename. |
| echo |
|
Display a line of text. |
| egrep |
|
Similar to grep -E, compatible with UNIX egrep. |
| expand |
|
Convert tabs to spaces. |
| expr |
|
Evaluate expressions. |
| false |
|
Do nothing. Exit with a status indicating failure. |
| fgrep |
|
Same as grep -F. |
| fold |
|
Wrap each input line to fit in specified width. |
| join |
|
Join lines of two files in a common field. |
| grep |
|
grep pattern filename. Ex: grep " R " --- Effect: Search for R with a
space on each side Ex: ls –a |grep R --- Effect: List all files with an R in
them or their info listing. |
| hexdump |
|
asc, decimal, hex, octal dump. |
| logname |
|
Print user's login name. |
| look |
|
Display lines beginning with a given string. |
| mkfifo |
|
Create named pipes with the given names. |
| nl |
|
Write each file to standard output with line numbers added. |
| od |
|
Dump files in octal and other formats. |
| patch |
|
Apply a diff file to an original. |
| paste |
|
Combines from 2 or more files. Ex: paste file1 file 2 |
| printf |
|
Print and format data. |
| rev |
|
Reverses lines in a file. |
| script |
|
Make a typescript of a terminal session. |
| sdiff |
|
Find differences between 2 files and merge interactively. |
| sed |
|
A stream editor. Used to perform transformations on an input
stream. |
| sleep |
|
Delay for a specified amount ot time. |
| sort |
|
Sort a file alphabetically. |
| split |
|
Split a file into pieces. |
| strings |
|
Print the strings of printable characters in files. |
| tac |
|
Concatenate and print files in reverse. |
| tee |
|
Read from standard input and write to standard output and files. |
| tr |
|
Translate or delete characters. |
| true |
|
Do nothing. Exit with a status indicating success. |
| tsort |
|
Perform topological sort. |
| ul |
|
Do underlining. |
| unexpand |
|
Convert tabs to spaces. |
| uniq |
|
Remove duplicate lines from a sorted file. |
| uudecode |
|
Used to transform files encoded by uuencode into their original
form. |
| uuencode |
|
Encode a binary file to be sent over a medium that doesn't support non-ASC
data. |
| wc |
|
Count lines, words, characters in a file. Ex: wc filename. |
| xargs |
|
Build and execute command lines from standard input. |
| yes |
|
Output the string "y" until killed. |