6 lines
69 B
Plaintext
6 lines
69 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
trap "echo Trapped" BADNAME TERM; echo $?
|
||
|
kill $$
|
||
|
echo Ok
|