See https://github.com/comp500/fabric-serverside-mods for the latest mod list!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Admiral | |
Air Chief Marshal | |
Air Commodore | |
Air Marshal | |
Air Vice Marshal | |
Alderman | |
Ambassador | |
Ambassador-at-Large | |
Archbishop | |
Archbishop Emeritus |
- Use
curl
to get the JSON response for the latest release - Use
grep
to find the line containing file URL - Use
cut
andtr
to extract the URL - Use
wget
to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \