annotate Sphinx/source/CheckMercurialLinks.sh @ 617:324ca8f236b8
document "Timeout" option when defining a DICOMweb server
author |
Sebastien Jodogne <s.jodogne@gmail.com> |
date |
Tue, 23 Feb 2021 14:18:09 +0100 |
parents |
a10f0e5be459 |
children |
05b106383b2a |
rev |
line source |
450
|
1 #!/bin/bash
|
|
2
|
461
|
3 grep -r '<https://hg.orthanc-server.com' | grep -vE 'CheckMercurialLinks.sh|~:' | cut -d '<' -f 2 | cut -d '>' -f 1 | sort | uniq | while read url
|
450
|
4 do
|
|
5 echo "${url}"
|
|
6 curl -s "${url}" > /dev/null
|
|
7 if [ $? -ne 0 ]
|
|
8 then
|
|
9 echo "ERROR!!!"
|
|
10 exit -1
|
|
11 fi
|
|
12 done
|
|
13
|
|
14 echo "SUCCESS"
|