Fix help strings

This commit is contained in:
Cassowary Rusnov 2024-10-24 10:44:31 -07:00
parent e3a1a8d5a5
commit 950d89ae09

View File

@ -84,12 +84,12 @@ COMMANDS = {
'environment': (('/environment', '/env', '/set'), "Set (or print) environment to send to remote host before running commands."),
'clearenv': (('/clearenv',), "Clear environment (entire or single variable)"),
'safety': (('/safety', 'safety'), "Turn on safety or turn off with `off`."),
'safe': (('/safe'), "Run this command as if it were safe even if safety is on."),
'confirm': (('/confirm',), "[scripting] Prompt for confirmation"),
'safe': (('/safe', ), "Run this command as if it were safe even if safety is on."),
'confirm': (('/confirm',), "[scriptpfing] Prompt for confirmation"),
'echo': (('/echo', ), "[scripting] print string"),
'arguments': (('/arguments',), "[scripting] Abort if no arguments are specified."),
# fixme add interpolation
'unsafe': (('/unsafe'), "[scriptiong] Abort command if safety is on."),
'unsafe': (('/unsafe', ), "[scriptiong] Abort command if safety is on."),
# 'history': (('/history', '/h'), "Show the last 10 commands in the history."),
# 'filteralias': (('/filteralias',), "Create a filter alias which allows quick filtering."),
# 'undo': (('/undo',), "Undo last host or environment command."),