commands.scm 305 B

1234567891011121314
  1. (define-module (commands)
  2. #:use-module (commands cd)
  3. #:use-module (commands cut)
  4. #:use-module (commands pwd)
  5. #:re-export (cd
  6. change-directory
  7. cut
  8. pwd
  9. cwd
  10. path-working-directory
  11. current-working-directory))