David Hogarty
04/03/2020, 6:40 PMDylan
04/03/2020, 6:43 PMDavid Hogarty
04/03/2020, 6:44 PMnicholas
04/03/2020, 7:09 PMclass ExtendShell(ShellTask):
def run(self):
# Set the command arg here so you can dynamically build the command string
self.command = f"some shell command"
super(ExtendShell, self).run()
I haven't tried this for ssh
but should make shell execution in general more convenient!