SIGUnix

Minutes for 2000.09.28

Project Updates

NJAMD

LimitGuard

Bugfixes

pftp

MP3-Player

General Discussion

New package formats

Parts prices

Meeting mini-presentation: Job control

Basic process life cycles

^Z
suspend a process
bg
resume a suspended process in the background
fg
put a suspended process into the foreground

Multiple suspended jobs

jobs
list background or suspended processes, along with a job number
%n
shell expands to PID of job n. Useful for kill %1, to kill the recently-suspended process.

Common signals

HUP
reset
TERM
exit
KILL
uncatchable kill
USER1
program-specific usefulness
INT
same as ^C
SEGV
force a coredump
STOP
suspend; like ^Z

Killing information

Control characters

^S
put lock on stdout
^Q
release lock put on by ^S
^O
no more output to the terminal, keep running
^\
send SEGV signal
^D
EOF
exit shell
end input
tab-completion filename expansions
delete character if in the middle of line
^V
send the next character sequence literally