summaryrefslogtreecommitdiff
path: root/converttimes.sh
diff options
context:
space:
mode:
Diffstat (limited to 'converttimes.sh')
-rwxr-xr-xconverttimes.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/converttimes.sh b/converttimes.sh
new file mode 100755
index 0000000..5f65c31
--- /dev/null
+++ b/converttimes.sh
@@ -0,0 +1,4 @@
+#! /bin/bash
+
+cat $1 | awk -Fm '{ print ($1 * 60) + $2 }' > $1.converted
+