sdf-scripts/cluster-web-to-other.ksh

16 lines
326 B
Bash
Raw Normal View History

2023-02-11 15:33:40 +00:00
#/bin/ksh
file=$(date +"%Y-%m")
wget -O /sdf/arpa/ns/s/scm/index.html https://scm.sdf.org
2023-02-12 18:03:50 +00:00
html2text -o /sdf/arpa/ns/s/scm/$file -ascii -style pretty /sdf/arpa/ns/s/scm/index.html
2023-02-11 15:33:40 +00:00
cat /sdf/arpa/ns/s/scm/$file > .plan
mv /sdf/arpa/ns/s/scm/$file /sdf/arpa/ns/s/scm/gopher
chmod 754 /sdf/arpa/ns/s/scm/gopher/$file
exit 0