summaryrefslogtreecommitdiff
path: root/Com/Simatime/Shell.scm
diff options
context:
space:
mode:
Diffstat (limited to 'Com/Simatime/Shell.scm')
-rw-r--r--Com/Simatime/Shell.scm34
1 files changed, 0 insertions, 34 deletions
diff --git a/Com/Simatime/Shell.scm b/Com/Simatime/Shell.scm
deleted file mode 100644
index b99e5cd..0000000
--- a/Com/Simatime/Shell.scm
+++ /dev/null
@@ -1,34 +0,0 @@
-(define-module (Com Simatime 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 (read 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)
- (regexp-substitute/global
- #f "/home/ben" (getcwd) 'pre "~" 'post))
-
-(define (ls)
- (ftw/scandir (getcwd)))
-
-(define (cd path)
- (chdir path)
- (ls))