diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-11-23 08:35:59 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-11-23 08:35:59 +0100 |
commit | 8150e9449ca00c937c2ba7570c3407d28d03128e (patch) | |
tree | 02a9f8e60a6af5e9870ca0aad36a72102f0835a6 | |
parent | 7757404ca54ab5b4843c040dec04e31d817e857e (diff) |
Added viod again
-rwxr-xr-x | viod | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +#!/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" |