optimized/cleaned up rlwrap detection

This commit is contained in:
dave 2009-01-01 14:25:06 -06:00
parent a1711bf65f
commit a4083a026e

View file

@ -1,3 +1,3 @@
for wrap in cle rlfe rlwrap ; do
(which $wrap &> /dev/null) && alias ocaml="$wrap ocaml"
for wrap in rlwrap rlfe cle ; do
(which $wrap &> /dev/null) && alias ocaml="$wrap ocaml" && break
done