summaryrefslogtreecommitdiff
path: root/qface/shell.py
blob: bf76f7c214c1774054c1bfaf3617d2bcc4637a42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import click
from subprocess import call

"""
API for interacting with the system shell
"""


def sh(args, **kwargs):
    """
    runs the given cmd as shell command
    """
    if not args:
        return
    click.echo('$ {0}'.format(' '.join(args)))
    return call(args, **kwargs)