Jonas Wagner writes: > In [[ $now != $password64 ]] && before="$now", don't you need quotes around > the variables for the inequality check? $now could be empty...
In bash, the LHS of [[ does not undergo expansion (or word splitting). I
did not look at the code, but it should be fine assuming you're asking
what I think you're asking.
$ [[ $nonexistent != foo ]]; echo $?
0
pgpWg3FbywRrt.pgp
Description: PGP signature
_______________________________________________ Password-Store mailing list [email protected] http://lists.zx2c4.com/mailman/listinfo/password-store
