It is very easy to change CLisp\'s current working directory:
>cat ~/.clisprc.lisp ;;; The following lines added by ql:add-to-init-file: #-quicklisp
Right now, better answer is: use (uiop:chdir "some/path").
(uiop:chdir "some/path")
Or you can use this function to change directory temporarily:
(uiop:call-with-current-directory "some/path" (lambda () (do-the-job))
Or this macro for more convenient way:
(uiop:with-current-directory ("some/path") (do-the-job))