dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

e (179B) [raw]


      1 #!/bin/sh
      2 
      3 if command -v rlwrap >/dev/null; then
      4 	exec env INPUTRC=$HOME/.ed_inputrc rlwrap \
      5 		--no-warnings \
      6 		--complete-filenames ed -p'> ' "$@"
      7 else
      8 	exec ed -p'> ' "$@"
      9 fi