diff options
author | EuAndreh <eu@euandre.org> | 2022-10-19 23:46:56 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-19 23:46:56 -0300 |
commit | 21b8fb9e3b847733ead51b56e997fbf4370c2e03 (patch) | |
tree | 45f717a226d61c5c423658c14583c63fcae7cd65 /bin | |
parent | Makefile: Include working Lisp image for SBCL (diff) | |
download | dotfiles-21b8fb9e3b847733ead51b56e997fbf4370c2e03.tar.gz dotfiles-21b8fb9e3b847733ead51b56e997fbf4370c2e03.tar.xz |
bin/cl: Handle -l option
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/cl | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -163,6 +163,12 @@ while getopts 'e:f:pM:mI:nvlh' flag; do v) VERBOSE=true ;; + l) + for i in $IMPLEMENTATIONS; do + printf '%s\n' "$i" + done + exit + ;; h) usage help |