You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
echo crawling...
|
|
python3 -u crawl.py --url http://nothat.bad.mn/ 2> /dev/null > urls.txt
|
|
sort urls.txt > urls.sorted.txt
|
|
echo checking...
|
|
sort urls.txt | python3 -u check.py > urlswithstat.txt
|
|
echo rendering html
|
|
cat urlswithstat.txt | python3 -u render.py > done2.html
|