Comment obtenir les liens directs vers les releases d’un projet hébergé sur github ?``` function github-release-url() { read -p ‘what is GH url of project ?> ’ GHU curl -sS $GHU | perl -ne ‘/\s+<a href="(.*)" rel=“nofollow”/ && print “$1\n”’ }