Skip to content

Instantly share code, notes, and snippets.

View pprishchepa's full-sized avatar

Pavel Prishchepa pprishchepa

View GitHub Profile
@pprishchepa
pprishchepa / gist:f27c4cd8d1b59041eac8c5b2bf9046db
Created October 14, 2016 09:38
Bash, Generate password, Environment Variable
# https://github.com/wikimedia/mediawiki-containers/blob/master/mediawiki-containers
if [ -z "$MEDIAWIKI_ADMIN_PASS" ];then
MEDIAWIKI_ADMIN_PASS=$(</dev/urandom tr -dc A-Za-z0-9 | head -c8)
fi