8 lines
102 B
Bash
Executable File
8 lines
102 B
Bash
Executable File
#!/bin/sh
|
|
x=`( trap 'echo exiting' EXIT; /usr/bin/true )`
|
|
if [ -z "$x" ]
|
|
then
|
|
echo failed
|
|
exit 1
|
|
fi
|