mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-04-13 09:30:06 +00:00
4 lines
121 B
Bash
Executable file
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
|