aboutsummaryrefslogtreecommitdiff
path: root/bin/E
diff options
context:
space:
mode:
Diffstat (limited to 'bin/E')
-rwxr-xr-xbin/E17
1 files changed, 17 insertions, 0 deletions
diff --git a/bin/E b/bin/E
new file mode 100755
index 00000000..80a22ecc
--- /dev/null
+++ b/bin/E
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+# run B but then wait for the file to change.
+# great to set as $EDITOR.
+# the notion of a file changing is a little weak.
+
+stat=`ls -l $1`
+B "$@"
+while sleep 1
+do
+ nstat=`ls -l $1`
+ if [ "x$stat" != "x$nstat" ]
+ then
+ exit
+ fi
+done
+