From 67afb66eb1a2e7a1f7c912bdeec002de7b25d91d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 17 Aug 2016 17:38:45 +1200 Subject: Move simple Bash/pdksh functions into POSIX sh Have only translated the scripts that translate readily into POSIX sh for now. More complex stuff like that bd/pd/sd/ud navigation for Bash doesn't port as easily, mostly because there isn't an analogue for the "local" keyword in POSIX. --- sh/shrc.d/ed.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 sh/shrc.d/ed.sh (limited to 'sh/shrc.d/ed.sh') diff --git a/sh/shrc.d/ed.sh b/sh/shrc.d/ed.sh new file mode 100644 index 00000000..c7afb176 --- /dev/null +++ b/sh/shrc.d/ed.sh @@ -0,0 +1,26 @@ +# Add a colon prompt to ed when a command is expected rather than text; makes +# it feel a lot more like using ex. Only do this when stdin is a terminal, +# however. Also try and use -v for more verbose error output, and rlwrap(1) if +# it's available. +ed() { + + # We're only adding options if input is from a terminal + if [ -t 0 ] ; then + + # Colon prompt (POSIX) + set -- -p : "$@" + + # Verbose if available (not POSIX) + if ed -sv - &0 2>&0 ; then + set -- -v "$@" + fi + fi + + # Execute the ed(1) call, in a wrapper if appropriate and with the + # concluded options + if [ -t 0 ] && hash rlwrap 2>/dev/null ; then + command rlwrap ed "$@" + else + command ed "$@" + fi +} -- cgit v1.2.3