summaryrefslogtreecommitdiff
path: root/modules/ssh/shell.scm
diff options
context:
space:
mode:
authorArtyom V. Poptsov <poptsov.artyom@gmail.com>2016-12-13 23:59:55 +0300
committerArtyom V. Poptsov <poptsov.artyom@gmail.com>2016-12-13 23:59:55 +0300
commitd0b450dc518fbedb7819b1e2e1e0261a42683d1a (patch)
treec45051aae0c0f66eac5165e4a63bb11d1e1ea3fa /modules/ssh/shell.scm
parentshell.scm (command-available?): New procedure (diff)
downloadguile-ssh-d0b450dc518fbedb7819b1e2e1e0261a42683d1a.tar.gz
shell.scm: Use (ice-9 regex)
* modules/ssh/shell.scm: Use (ice-9 regex) module.
Diffstat (limited to 'modules/ssh/shell.scm')
-rw-r--r--modules/ssh/shell.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/ssh/shell.scm b/modules/ssh/shell.scm
index c36303d..504c1f8 100644
--- a/modules/ssh/shell.scm
+++ b/modules/ssh/shell.scm
@@ -37,6 +37,7 @@
(define-module (ssh shell)
#:use-module (ice-9 rdelim)
+ #:use-module (ice-9 regex)
#:use-module (ssh channel)
#:use-module (ssh popen)
#:export (rexec which pgrep fallback-pgrep command-available?))