One of the nicest things about Linux is that virtually ALL commands
have on-line documentation. If you need to find out about a command,
or even the shell (bash), just enter "man <command>".
On this page, I am providing links to the man pages for some of the
commands most commonly used on IRLP systems. Just click on the link,
and the man page for the FC3 version of the command will be displayed.
|
SCRIPTING
|
|
bash
|
GNU Bourne-Again SHell
|
|
perl
|
Practical Extraction and Report Language
|
|
TEXT FILTERS
|
|
awk (gawk)
|
pattern scanning and processing language
|
|
cut
|
remove sections from each line of files
|
|
dos2unix
|
DOS/MAC to UNIX text file format converter
|
|
expand
|
convert tabs to spaces
|
|
fmt
|
simple optimal text formatter
|
|
grep, egrep, fgrep
|
print lines matching a pattern
|
|
head
|
output the first part of files
|
|
join
|
join lines of two files on a common field
|
|
sed
|
a stream editor
|
|
sort
|
sort lines of text files
|
|
tail & tail -f
|
output the last part of files
|
|
tr
|
translate or delete characters
|
|
uniq
|
remove duplicate lines from a sorted file
|
|
unix2dos
|
UNIX to DOS text file format converter
|
|
wc
|
print the number of newlines, words, and bytes in files
|
|
zcat
|
compress or expand files
|
|
COOL COMMANDS
|
|
at, batch, atq, atrm
|
queue, examine or delete jobs for later execution
|
|
bg
|
Resume the suspended job jobspec in the background
|
|
cal
|
displays a calendar
|
|
diff
|
find differences between two files
|
|
dig
|
DNS lookup utility
|
|
fg
|
Resume jobspec in the foreground
|
|
killall
|
kill processes by name
|
|
logger
|
a shell command interface to the syslog(3) system log module
|
|
look
|
display lines beginning with a given string
|
|
mailx
|
process messages
|
|
netstat
|
Print network connections, routing tables, interface statistics, masquerade connections, and multicast memberships
|
|
nslookup
|
query Internet name servers interactively
|
|
pgrep, pkill
|
look up or signal processes based on name and other attributes
|
|
ps
|
report a snapshot of the current processes
|
|
script
|
make typescript of terminal session
|
|
strings
|
print the strings of printable characters in files
|
|
find | xargs
|
find - search for files in a directory hierarchy
xargs - build and execute command lines from standard input
|
|
tar
|
The GNU version of the tar archiving utility
|
|
tee
|
read from standard input and write to standard output and files
|
|
whois -h (fucknsi, arin)
|
searches Whois servers for the object on the command line
|
|
EDITORS
|
|
ed
|
a line-oriented text editor
|
|
nano (pico)
|
Nano’s ANOther editor, an enhanced free Pico clone
|
|
vi
|
Vi IMproved, a programmers text editor
|