Use man pages

This commit is contained in:
Jake McDermott 2020-05-19 17:04:38 -04:00
parent 0618822fe5
commit 7ea96ad468
No known key found for this signature in database
GPG Key ID: 0E56ED990CDFCB4F

View File

@ -1,14 +1,5 @@
REVISION=588429
CHROMIUM_URL="https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/${REVISION}/chrome-linux.zip"
interval=30
retries=6
status=1
until [ $retries -eq 0 ] || [ $status -eq 0 ]; do
wget ${CHROMIUM_URL} -O /tmp/chrome-linux.zip
status=$?
sleep $interval
((retries--))
done
wget ${CHROMIUM_URL} -w 30 -t 6 -O /tmp/chrome-linux.zip
unzip -o -d /tmp /tmp/chrome-linux.zip