summaryrefslogtreecommitdiffstats
path: root/viod
diff options
context:
space:
mode:
Diffstat (limited to 'viod')
-rwxr-xr-xviod17
1 files changed, 0 insertions, 17 deletions
diff --git a/viod b/viod
deleted file mode 100755
index 8bb4c21..0000000
--- a/viod
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-editor=vi
-
-if [ $# -eq 0 ]
-then
- echo "usage: `basename $0` file"
- exit 1
-fi
-
-file=$1
-
-timestamp=`stat -c %y "$file" | cut -d. -f1 | cut -d" " -f1 | awk -F- '{print $1 $2 $3}'``stat -c %y "$file" | cut -d. -f1 | cut -d" " -f2 | awk -F: '{print $1 $2 "." $3}'`
-
-"$editor" "$file"
-
-touch -t $timestamp "$file"