summaryrefslogtreecommitdiff
path: root/qface/shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'qface/shell.py')
-rw-r--r--qface/shell.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/qface/shell.py b/qface/shell.py
index 5496923..3d34d89 100644
--- a/qface/shell.py
+++ b/qface/shell.py
@@ -1,8 +1,15 @@
import click
from subprocess import call
+"""
+API for interacting with the system shell
+"""
+
def sh(cmd, **kwargs):
+ """
+ runs the given cmd as shell command
+ """
if not cmd:
return
click.echo('$ {0}'.format(cmd))