You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
178 B
13 lines
178 B
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
TMPFILE=$(mktemp /tmp/viper.XXXXXXXX)
|
||
|
cat > "$TMPFILE"
|
||
|
$EDITOR "$@" "$TMPFILE" < /dev/tty > /dev/tty
|
||
6 years ago
|
|
||
|
if [ "$?" -eq 0 ]; then
|
||
|
cat "$TMPFILE"
|
||
|
fi
|
||
|
|
||
6 years ago
|
\rm -f "$TMPFILE"
|
||
|
|