xonsh/xontrib/coreutils.py

44 lines
1 KiB
Python
Raw Normal View History

"""Additional core utilities that are implemented in xonsh. The current list
2017-02-12 18:07:26 -05:00
includes:
* cat
* echo
* pwd
* tee
* tty
* yes
In many cases, these may have a lower performance overhead than the
posix command line utility with the same name. This is because these
tools avoid the need for a full subprocess call. Additionally, these
tools are cross-platform.
"""
from xonsh.built_ins import XSH
from xonsh.platform import (
ON_POSIX,
)
2017-02-12 18:07:26 -05:00
from xonsh.xoreutils.cat import cat
from xonsh.xoreutils.echo import echo
from xonsh.xoreutils.pwd import pwd
from xonsh.xoreutils.tee import tee
from xonsh.xoreutils.tty import tty
from xonsh.xoreutils.umask import umask
from xonsh.xoreutils.uptime import uptime
2017-02-12 18:07:26 -05:00
from xonsh.xoreutils.yes import yes
__all__ = ()
XSH.aliases["cat"] = cat
XSH.aliases["echo"] = echo
XSH.aliases["pwd"] = pwd
XSH.aliases["tee"] = tee
XSH.aliases["tty"] = tty
XSH.aliases["yes"] = yes
XSH.aliases["umask"] = umask
XSH.aliases["uptime"] = uptime
if ON_POSIX:
from xonsh.xoreutils.ulimit import ulimit
XSH.aliases["ulimit"] = ulimit