Skip to content

Instantly share code, notes, and snippets.

@jacek213
Created February 17, 2016 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jacek213/bfd6b3be8bb2202e2962 to your computer and use it in GitHub Desktop.
Save jacek213/bfd6b3be8bb2202e2962 to your computer and use it in GitHub Desktop.
# pass message
log() {
now=$(date "+%d.%m.%Y %H:%M:%S")
echo "[$now] $1"
}
# pass command description
log_status() {
exitval=$?
if [ $exitval -eq 0 ]; then
log "$1 succeded"
else
log "$1 failed, exit value $exitval"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment