summaryrefslogtreecommitdiff
path: root/bs/shell.scm
blob: 3a5d276784e0ed29420df82d9db12418de0e8dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
(define-module (bs shell)
  #:use-module ((ice-9 popen) #:prefix popen/)
  #:use-module ((ice-9 rdelim) #:prefix rdelim/)
  #:use-module ((ice-9 ftw) #:prefix ftw/)
  #:export (exec
            stream
            pwd
            ls
            cd))

(define (exec cmd)
  (let* ((port (popen/open-input-pipe cmd))
         (ret (rdelim/read-string port)))
    (popen/close-pipe port)
    ret))

(define (stream cmd)
  (let* ((port (popen/open-input-pipe cmd))
         (_ (setvbuf port 'none))
         (ret (rdelim/read-string port)))
    (flush-all-ports)
    (popen/close-pipe port)
    ret))

(define pwd getcwd)

(define (ls)
  (ftw/scandir (getcwd)))

(define (cd path)
  (chdir path)
  (ls))

;; run shell commands with #$"cmd args"
;;   #$"who"
;;   ben      tty7         2022-11-07 20:31 (:0)
(read-hash-extend
 #\$
 (lambda (c port)
   (let ((input (read port)))
     ;; todo:
     ;; - parse input for #{interpolations}
     ;; - evaluate scheme code inside the blocks
     ;; - then exec this
     `(exec ,input))))