Mercurial > hg > orthanc-book
view Sphinx/source/CheckMercurialLinks.sh @ 1165:28b55ad71cb6 Orthanc-1.12.8
Orthanc 1.12.8
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Sat, 14 Jun 2025 17:53:22 +0200 |
| parents | 05b106383b2a |
| children |
line wrap: on
line source
#!/bin/bash grep -r '<https://orthanc.uclouvain.be/hg' | grep -vE 'CheckMercurialLinks.sh|~:' | cut -d '<' -f 2 | cut -d '>' -f 1 | sort | uniq | while read url do echo "${url}" curl -s "${url}" > /dev/null if [ $? -ne 0 ] then echo "ERROR!!!" exit -1 fi done echo "SUCCESS"
