dots/commonsh/10_rlwrap
2010-09-02 11:49:57 -05:00

4 lines
121 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