This repository has been archived on 2023-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
downloadcodium/updateVSCodium.sh

10 lines
472 B
Bash

#!/usr/bin/env bash
wget -q https://api.github.com/repos/VSCodium/vscodium/releases/latest
grep -n 'browser_download_url": ".*.AppImage"' latest | awk '{ print substr ($0, 36 ) }' | awk '{ print substr( $0, 1, length($0)-1 ) }' > url
rm latest
[ -f $HOME/VSCodium.AppImage ] && rm $HOME/VSCodium.AppImage
wget -q --show-progress -i url -O VSCodium.AppImage
rm url
chmod u+x VSCodium.AppImage
[ -f $HOME/VSCodium.AppImage ] || mv VSCodium.AppImage $HOME/VSCodium.AppImage