feat(cmd): add --tty flag to run commands from a script

This commit is contained in:
2023-03-29 14:25:08 +02:00
parent 81b032be85
commit 9ade250f01
2 changed files with 14 additions and 0 deletions

View File

@ -58,6 +58,16 @@ var ChaosFlag = &cli.BoolFlag{
Destination: &Chaos,
}
// Disable tty to run commands from script
var Tty bool
// TtyFlag turns on/off tty mode.
var TtyFlag = &cli.BoolFlag{
Name: "tty, T",
Usage: "Disables TTY mode to run this command from a script.",
Destination: &Tty,
}
// DNSProvider specifies a DNS provider.
var DNSProvider string