Last active
May 9, 2024 14:08
-
-
Save ryukinix/5273af4b25dec53ed9f078bd7e350d88 to your computer and use it in GitHub Desktop.
find-executable in Common Lisp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun executables () | |
(loop with path = (uiop:getenv "PATH") | |
for p in (uiop:split-string path :separator ":") | |
for dir = (probe-file p) | |
when (uiop:directory-exists-p dir) | |
append (uiop:directory-files dir))) | |
(defun find-executable (name) | |
(find name (executables) | |
:test #'equalp | |
:key #'pathname-name)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment