Command | Usage |
awk | scan one or more files and perform an action on all of the lines that match a particular conditon |
cat | concatenate files together and send the result to the standard output |
cksum | calculate a CRC checksum for files |
csplit | context based file splitter |
cut | cut out selected fields of each line of a file |
egrep | search a file for a pattern using full regular expressions |
expand | replace the tabs in a file with a specified number of spaces |
fgrep | searched a file for fixed-character string |
fmt | simple text formatters |
fold | wrap files to fit in a specified number of columns |
grep | include also grep,egrep and fgrep; search for patterns matching on lines in a file |
head | print a specified number of lines from the beginning of a file |
indent | formatter for C source code |
join | conditionally merge two files together based on matching fields in the files |
less | a display paginator similar to more and pg in UNIX |
make | update a file based on a series of dependency rules stored in a special format |
md5sum | calculate a "fingerprint" for files using the MD5 algorithm |
more | copy by the screenful |
nl | add line number to files |
od | dump the contents of a file in a number format, including octal,hex and several ASCII format |
patch | apply changes to files |
paste | merge multiple files together into one file by concatenating lines from each file to form one line in the output file |
pr | pring files |
sed | "stream editor" based on the line editor ed; useful for editing streams of data |
sort | sort lines in a file based on fields in the file |
split | cut files into multiple fixed size pieces |
sum | calculate a simple checksum for files |
tail | print a specified number of line from the end of a file |
tr | character translation |
tsort | topological sort |
troff | typeset or format documents | |
unexpand | "unexpand" sequences of a specified number of spaces into tab characters |
uniq | remove duplicate lines from a sorted file |
vi | screen text editor |
vim | improved vi with syntax highlighting for Ch |
wc | count characters, words and/or lines in a file |