Added the example script.
This commit is contained in:
parent
05f2fa7a66
commit
59f0dc16bc
|
@ -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
|
Loading…
Reference in New Issue