Files
dotfiles/dot_config/nushell/nu_scripts/custom-completions/auto-generate/completions/ansible-vault.nu
Cian Hughes 896af887ca Changed . token to _dot
This change allows the dotfiles to work with chezmoi (e.g: on windows)
and improves grepability with neovim/telescope
2024-11-07 13:52:17 +00:00

23 lines
389 B
Nu

# Display version and exit
extern "ansible-vault" [
...args
]
# Decrypt encrypted file or stdin
extern "ansible-vault decrypt" [
...args
]
# Encrypt a file or stdin
extern "ansible-vault encrypt" [
--prompt(-p) # Prompt for the string to encrypt
...args
]
# Encrypt string
extern "ansible-vault encrypt_string" [
--prompt(-p) # Prompt for the string to encrypt
...args
]