mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
14 lines
465 B
Bash
14 lines
465 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# 20220218 bkw: download the PDF docs for SOGo. upstream site does
|
||
|
# user-agent checking, so we pretend to be an ancient version of
|
||
|
# firefox.
|
||
|
|
||
|
wget --user-agent 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)' \
|
||
|
https://sogo.nu/files/docs/SOGoInstallationGuide.pdf \
|
||
|
https://sogo.nu/files/docs/SOGoMozillaThunderbirdConfigurationGuide.pdf \
|
||
|
https://sogo.nu/files/docs/SOGoOutlookConnectorConfigurationGuide.pdf
|
||
|
|
||
|
md5sum -c docs.md5sums
|
||
|
exit $?
|