mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-05 16:48:38 +00:00
4 lines
125 B
Bash
Executable file
4 lines
125 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
|