dots/commonsh/10_rlwrap
David Alexander Majnemer b3c9a9c6e9 - fixed a bug here and there
- made it fully sh compliant (works even with solaris sh)
2009-01-03 14:15:00 -06:00

4 lines
124 B
Bash
Executable file

#! /bin/sh
for wrap in rlwrap rlfe cle ; do
(command -v $wrap > /dev/null 2>&1) && alias ocaml="$wrap ocaml" && break
done