Source code for tbot.machine.linux.shell.ash

from tbot.machine.linux import shell


[docs]class Ash(shell.Shell): """ Ash shell. .. py:data:: name: str = "ash" """ name = "ash" command = ["ENV=/dev/null", "ash"]