0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Githubリポジトリの最新版のダウンロードファイルリンクの一覧を取得する

Posted at

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
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?