Skip to content

Commit

Permalink
Change /dev/urandom call
Browse files Browse the repository at this point in the history
Amended lines 170-171 based on change in /dev/urandom default behavior on Mac Big Sur
  • Loading branch information
mpmeers authored Jul 8, 2021
1 parent c8a8431 commit 55895ec
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 | LC_CTYPE=C tr -dc A-Za-z0-9 | head -c 13; echo ''`
password2=`head /dev/urandom | LC_CTYPE=C tr -dc A-Za-z0-9 | 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 55895ec

Please sign in to comment.