diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-09-21 19:15:27 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-09-21 19:15:27 +0200 |
commit | 6cc9bea13492df83aef62c0b109ca22c72afb432 (patch) | |
tree | 45f99702056807fc99ad53fedc68d46abc098e19 /src | |
parent | 5a6df91e49376c701381b99d89d61af698c98463 (diff) | |
download | pass-6cc9bea13492df83aef62c0b109ca22c72afb432.tar.gz pass-6cc9bea13492df83aef62c0b109ca22c72afb432.tar.bz2 pass-6cc9bea13492df83aef62c0b109ca22c72afb432.zip |
Alias insert to add.
Diffstat (limited to '')
-rwxr-xr-x | src/password-store.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/password-store.sh b/src/password-store.sh index 2287a46..c85cc33 100755 --- a/src/password-store.sh +++ b/src/password-store.sh @@ -592,7 +592,7 @@ case "$1" in show|ls|list) shift; cmd_show "$@" ;; find|search) shift; cmd_find "$@" ;; grep) shift; cmd_grep "$@" ;; - insert) shift; cmd_insert "$@" ;; + insert|add) shift; cmd_insert "$@" ;; edit) shift; cmd_edit "$@" ;; generate) shift; cmd_generate "$@" ;; delete|rm|remove) shift; cmd_delete "$@" ;; |