np <[email protected]> writes: > I'm using RC3 (from iso) upgraded to RC4. When running: > > echo -n | openssl dgst -whirlpool
I realize this is a tangent, but `echo -n` is unsafe. In this case, since you are not printing anything, you can simply use `true|`, `:|`, or `</dev/null` instead of `echo -n|`. In other cases, use printf(1). DES -- Dag-Erling Smørgrav - [email protected]
