view Sphinx/source/CheckMercurialLinks.sh @ 1113:a588960a72e5 default tip

spelling
author Alain Mazy <am@orthanc.team>
date Mon, 28 Oct 2024 09:23:08 +0100
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"