mirror of
https://github.com/imgproxy/imgproxy.git
synced 2024-11-18 16:31:44 +02:00
6 lines
192 B
Bash
Executable File
6 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "https://docs.imgproxy.net" > docs/sitemap.txt
|
|
RE='^\* \[.+\]\((.+)\)'
|
|
grep -E "$RE" docs/_sidebar.md | sed -E "s/$RE/https:\\/\\/docs.imgproxy.net\\/\\1/" >> docs/sitemap.txt
|