Added the example script.

This commit is contained in:
Ze'ev Schurmann 2023-12-12 22:38:02 +02:00
parent 05f2fa7a66
commit 59f0dc16bc
1 changed files with 23 additions and 0 deletions

23
example.sh Normal file
View File

@ -0,0 +1,23 @@
#!/bin/bash
SECONDS=0
trap cleanexit 0
trap breakexit 2
trap commandexit 17
function cleanexit {
echo "$SECONDS, Finished!" >> time.log
exit 0
}
function breakexit {
echo "$SECONDS, CTRL+C" >> time.log
exit 1
}
function commandexit {
echo "$SECONDS, $(fc -ln -1), $?" >> time.log
}
##BASH SCRIPT GOES HERE