We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update alias
The update alias command would update the given flags of a pre-existing alias configuration
$ cat $HOME/.mole/example.toml type = "local" verbose = false insecure = false detach = false source = [":8081"] destination = ["172.17.0.100:80"] server = "[email protected]:22122" key = "test-env/ssh-server/keys/key" keep-alive-interval = "10s" connection-retries = 3 wait-and-retry = "3s" ssh-agent = "" timeout = "3s"
$ mole update alias example --key "path/to/new/key" alias example updated with success
$ cat $HOME/.mole/example.toml type = "local" verbose = false insecure = false detach = false source = [":8081"] destination = ["172.17.0.100:80"] server = "[email protected]:22122" key = "path/to/new/key" keep-alive-interval = "10s" connection-retries = 3 wait-and-retry = "3s" ssh-agent = "" timeout = "3s"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
update alias
command would update the given flags of a pre-existing alias configurationThe text was updated successfully, but these errors were encountered: