Horje
dowload latest release github curl Code Example
dowload latest release github curl
curl --silent "https://api.github.com/repos/USER/REPO/releases/latest" | # Get latest release from GitHub api
    grep '"tag_name":' |                                                 # Get tag line
    sed -E 's/.*"([^"]+)".*/\1/' |
    xargs -I {} curl -sOL "https://github.com/USER/REPO/archive/"{}'.tar.gz'




Shell

Related
sum of array elements bash Code Example sum of array elements bash Code Example
ubuntu activate venv Code Example ubuntu activate venv Code Example
adb find device ip Code Example adb find device ip Code Example
find gradle version Code Example find gradle version Code Example
how to make a beep in cmd Code Example how to make a beep in cmd Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11