mirror of
https://github.com/sheumann/hush.git
synced 2024-10-29 20:27:40 +00:00
6 lines
69 B
Plaintext
6 lines
69 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
trap "echo Trapped" BADNAME TERM; echo $?
|
||
|
kill $$
|
||
|
echo Ok
|