summaryrefslogtreecommitdiff
path: root/pwgrep.sh
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2010-07-28 16:15:34 +0000
committerPaul Buetow <paul@buetow.org>2010-07-28 16:15:34 +0000
commit4fa27d2c38902c465f66c7d7f960ded7ebaa991b (patch)
tree750ca9b4071b40603e8eb9158c35681515fee52e /pwgrep.sh
parent7de3e9bdfe216518d1a18ff1219b65088b2d7a7d (diff)
v0.5.1
Diffstat (limited to 'pwgrep.sh')
-rwxr-xr-xpwgrep.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/pwgrep.sh b/pwgrep.sh
index f2d5a28..21f6b28 100755
--- a/pwgrep.sh
+++ b/pwgrep.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-# pwgrep v0.5 (c) 2009, 2010 by Paul C. Buetow
+# pwgrep v0.5.1 (c) 2009, 2010 by Paul C. Buetow
# pwgrep helps you to manage all your passwords using GnuGP
# for encryption and a versioning system (subversion by default)
# for keeping track all changes of your password database. In
@@ -31,8 +31,8 @@
# You can overwrite the default values by setting env. variables
# or by just editing this file.
-[ -z $SVN_EDITOR] && SVN_EDITOR=ex
-[ -z $PWGREPDB] && PWGREPDB=database.gpg
+[ -z $SVN_EDITOR ] && SVN_EDITOR=ex
+[ -z $PWGREPDB ] && PWGREPDB=database.gpg
# The PWGREPWORDIR should be in its own versioning repository.
# For password revisions.
@@ -66,11 +66,11 @@ umask 177
cd $PWGREPWORKDIR || error "No such file or directory: $PWGREPWORKDIR"
function out {
- echo "$@"
+ echo "$@" 1>&2
}
function info {
- out "=====> $@"
+ out "=====> $@"
}
function error {