X-Git-Url: http://git.scottworley.com/overonion/blobdiff_plain/b88d75ad2dc471edd9da2e0678e6788175305f9e..291948a54de3d3e636ce557e3fad4b125bb793bd:/overonion-make-key diff --git a/overonion-make-key b/overonion-make-key index 6cfc349..da564ad 100755 --- a/overonion-make-key +++ b/overonion-make-key @@ -24,18 +24,18 @@ if [[ "$1" == '--make_INSECURE_key' ]];then fi if (( $# != 1));then - echo "usage: overonion-make-key keyfile" + echo "usage: overonion-make-key keyfile" >&2 exit 1 fi keyfile=$1 if [[ -e "$keyfile" ]];then - echo "That keyfile already exists. I refuse to overwrite it." + echo "That keyfile already exists. I refuse to overwrite it." >&2 exit 1 fi i=0 while read -r cipher;do - echo -n $'\r'"Generating key $((++i))/${#ciphers[*]}" + echo -n $'\r'"Generating key $((++i))/${#ciphers[*]}" >&2 cat >> "$keyfile" <<< "$cipher $(head -c 99 "$random_source" | base64 --wrap=0 )" done < <( IFS=$'\n'; shuf <<< "${ciphers[*]}"; ) -echo +echo >&2