aboutsummaryrefslogtreecommitdiff
path: root/etc/ep
diff options
context:
space:
mode:
Diffstat (limited to 'etc/ep')
-rwxr-xr-xetc/ep9
1 files changed, 9 insertions, 0 deletions
diff --git a/etc/ep b/etc/ep
new file mode 100755
index 0000000..4be6317
--- /dev/null
+++ b/etc/ep
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+# ep -- edit pipe
+
+tmp=`mktemp /tmp/ep.XXXXXX`
+cat > $tmp
+${EDITOR:-vi} $tmp < /dev/tty > /dev/tty
+cat $tmp
+rm $tmp