Skip to content

Commit

Permalink
filter out more non-alphanumeric characters
Browse files Browse the repository at this point in the history
  • Loading branch information
dtenenba committed Jul 8, 2021
1 parent 55895ec commit 5179a70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SEACR_1.4.sh
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ else
exit 1
fi

password=`head /dev/urandom | base64 | tr -d '/+' | head -c 13; echo ''`
password2=`head /dev/urandom | base64 | tr -d '/+' | head -c 13; echo ''`
password=`head /dev/urandom | base64 | tr -d '/+-=' | head -c 13; echo ''`
password2=`head /dev/urandom | base64 | tr -d '/+-=' | head -c 13; echo ''`

exp=`basename $BEDGRAPH`

Expand Down

0 comments on commit 5179a70

Please sign in to comment.