From 6deac5efc1c0207d71006a7941c74f66a0bc0a2f Mon Sep 17 00:00:00 2001 From: EUcancER Date: Fri, 1 Jun 2012 14:51:31 +0200 Subject: add timer util --- util/bin/timer | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 util/bin/timer diff --git a/util/bin/timer b/util/bin/timer new file mode 100755 index 00000000..98c43063 --- /dev/null +++ b/util/bin/timer @@ -0,0 +1,14 @@ +#!/bin/bash + +if [[ $# -eq 0 ]];then + echo $(date '+%s') +else + [ "$1" -eq "-h" -o "$1" -eq "--help" ] && \ + echo "usage: $0 [start_time]" && \ + echo " if no start_time is given, return the currentime" && \ + echo " if start_time is given, return the difference" + stime=$1 + etime=$(date '+%s') + [[ -z "$stime" ]] && stime=$etime + echo $((etime - stime)) +fi -- cgit v1.2.3