#!/bin/sh # ep -- edit pipe tmp=/tmp/ep.$RANDOM cat > $tmp ${EDITOR:-vi} $tmp < /dev/tty > /dev/tty cat $tmp rm $tmp