mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-12-22 22:01:53 +01:00
5 lines
123 B
Fish
5 lines
123 B
Fish
|
function ansible-encrypt-to-clipboard
|
||
|
read -s val
|
||
|
ansible-vault encrypt_string -- "$val" | grep -v Encryption | pbcopy
|
||
|
end
|