A password-store clone written in Rust.
The name rass
is a combination of rust and pass whereas pass
being
the command line tool for password-store.
Due to rass
dependency to rust-gpgme you
need to have a recent version of GPGme installed,
see.
From source:
$ git clone https://github.com/awidegreen/rass.git
$ cd rass
$ cargo build --release
NOTE: Not released on crates.io yet
$ cargo install rust-rass
In comparison to pass
, rass
does not support [yet]:
- not all environment variables are support
- supported:
PASSWORD_STORE_DIR
,PASSWORD_STORE_CLIP_TIME
- not supported:
PASSWORD_STORE_GIT
,PASSWORD_STORE_X_SELECTION
,PASSWORD_STORE_UMASK
- supported:
As pass
, rass
assume that your password store is located in
$HOME/.password-store
. If your store is in a different location, set the
PASSWORD_STORE_DIR
variable.
Show the help
$ rass -h
# some detailed subcommand help
$ rass insert -h
Initialize a new password-store.
$ rass init /path/to/new/store
List all store entries (subcommand ls
)
$ rass
Copy an entry to clipboard
$ rass PASS_ENTRY
Show an entry
$ rass show PASS_ENTRY
Insert a new entry (subcommand insert
or add
)
# single-line
$ rass insert foobar
# multi-line
$ rass insert -m foobar
Dispatch git
command to rass, executed within the password-store
# push new entries to origin
$ rass git push origin master
# pull latest changes
$ rass git pull
# show the git log of the password-store
$ rass git log
Grep for a string in the password store.
# search for "foobar" in the entire store
$ rass grep foobar
For more information see the help: rass help
Edit an entry will make use of the EDITOR
environment variable. If the variable
is not, vim
will be assumed.
# edit entry foobar
$ rass edit foobar
- subcommands
generate
mv
cp
- some more tests
- a simple CLI UI?
Copyright (C) 2017 by Armin Widegreen
This is free software, licensed under The ISC License.