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
аудитный | |
аудитные | |
аудитных | |
аудитного | |
бакета | |
бакету | |
бакеты | |
бакете | |
бакетам | |
бакетах |
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
#!/bin/bash | |
REPO="AlexJameson/software-development-dictionary-ru" | |
LATEST_RELEASE=$(curl -s https://api.github.com/repos/$REPO/releases/latest) | |
DOWNLOAD_URL=$(echo $LATEST_RELEASE | grep -o '"browser_download_url": "[^"]*sdd.txt"' | cut -d '"' -f 4) | |
VERSION=$(echo $LATEST_RELEASE | grep -o '"tag_name": "[^"]*"' | cut -d '"' -f 4) |