linux系
curl -sSL ※GitHUBリポジトリのURL/releases/latest | grep -E ".*/(releases|archive)/.*nofollow.*" | sed -E "s;.*<a href=\"(.+)\" rel=.nofollow.>;https://github.com/\1;g"
# 例
$ curl -sSL https://github.com/git-for-windows/git/releases/latest | grep -E ".*/(releases|archive)/.*nofollow.*" | sed -E "s;.*<a href=\"(.+)\" rel=.nofollow.>;https://github.com/\1;g"
windows系(powershell)
((wget -UseBasicParsing ※GitHUBリポジトリのURL/releases/latest).Links | Where-Object {$_ -match ".*/(releases|archive)/.*nofollow.*"}) | ForEach-Object {"https://github.com/" +$_.href}
# 例
PS C:> ((wget -UseBasicParsing https://github.com/git-for-windows/git/releases/latest).Links | Where-Object {$_ -match ".*/(releases|archive)/.*nofollow.*"}) | ForEach-Object {"https://github.com/" +$_.href}
出力例
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/Git-2.34.1-32-bit.exe
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/Git-2.34.1-32-bit.tar.bz2
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/Git-2.34.1-64-bit.exe
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/Git-2.34.1-64-bit.tar.bz2
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/MinGit-2.34.1-32-bit.zip
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/MinGit-2.34.1-64-bit.zip
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/MinGit-2.34.1-busybox-32-bit.zip
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/MinGit-2.34.1-busybox-64-bit.zip
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/pdbs-for-git-32-bit-2.34.1.1.2ca94ab318-1.zip
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/pdbs-for-git-64-bit-2.34.1.1.2ca94ab318-1.zip
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/PortableGit-2.34.1-32-bit.7z.exe
https://github.com//git-for-windows/git/releases/download/v2.34.1.windows.1/PortableGit-2.34.1-64-bit.7z.exe
https://github.com//git-for-windows/git/archive/refs/tags/v2.34.1.windows.1.zip
https://github.com//git-for-windows/git/archive/refs/tags/v2.34.1.windows.1.tar.gz