add support for wrapping crappy interpreters

This commit is contained in:
dave 2009-01-01 13:49:29 -06:00
parent b688758d3a
commit 1e7d1ae9e5

5
zsh/rlwrap Executable file
View file

@ -0,0 +1,5 @@
for wrap in cle rlfe rlwrap ; do
if (which $wrap &> /dev/null) ; then
alias ocaml="$wrap ocaml"
fi
done