この資料は Rust 製のコマンドラインツール vault-cli について紹介するものです。
Rustの環境構築やツールのインストール方法については以下を参照してください
GitHub - bennyboer/vault: Simple password-based document encryption
$ vault close <file> --retain-source # ファイルを削除せずに暗号化
$ vault open <file> --retain-source # ファイルを削除せずに復号化
% vault --help
### DESCRIPTION ###
Vault CLI
### SUB-COMMANDS ###
- close (c) | Close the vault (Encrypting file(s))
- open (o) | Open the vault (Decrypting file(s))
### OPTIONS ###
--help (-?) <boolean> | Get this information displayed
--password (-p) <string> | The password to use for encryption/decryption
--retain-source (-r) <boolean> | Whether to retain the source file(s) after encryption/decryption
### ARGUMENTS ###
(Command expects no arguments...)