mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-31 22:08:34 +00:00
4 lines
124 B
Bash
Executable file
4 lines
124 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
|