2023-11-09 15:16:19 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-11-20 16:57:02 +00:00
|
|
|
rm -rf error/
|
2023-11-09 15:16:19 +00:00
|
|
|
git clone https://git.askiiart.net/askiiart/http-status-codes.git
|
2023-12-05 22:52:03 +00:00
|
|
|
cd http-status-codes/
|
|
|
|
python3 nginx-create-pages.py
|
|
|
|
cp -r pages/ ..
|
|
|
|
cd ..
|
2023-11-09 15:16:19 +00:00
|
|
|
mv pages/ error/
|
|
|
|
cp http-status-codes/you.gif assets/
|
2023-11-20 16:57:02 +00:00
|
|
|
cp http-status-codes/boykisser.png assets/
|
2023-11-09 15:16:19 +00:00
|
|
|
rm -rf http-status-codes/
|
2023-11-20 16:57:02 +00:00
|
|
|
find error/ -type f | xargs sed -i 's/img src=\//img src=\/assets\//g'
|