This file contains 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
#!/usr/bin/env bash | |
rm -rf $HOME/.bin | |
mkdir -p $HOME/.config/{jellyfin} | |
## change version no to update JELLYFINd | |
JELLYFIN_VERSION=$(curl -s 'https://repo.jellyfin.org/releases/server/linux/stable/combined/' | egrep -m 1 -o "jellyfin_[0-9\.]+_amd64\.tar\.gz" | head -n 1 | cut -d "_" -f2) | |
## to update ASPDOTNET find new url at https://dotnet.microsoft.com/en-us/download/dotnet/5.0 |