dotfiles/xonsh/includes/cellular.xsh
2024-11-07 16:25:41 -07:00

12 lines
196 B
Text

#
# Cellular helpers.
#
def _at_command(args, stdin=None):
""" Helper for running one or more AT commands. """
echo @(args) | sudo atinout - $XONSH_AT_MODEM -
aliases['at'] = _at_command