Ajout du script

This commit is contained in:
Mylloon 2021-10-21 19:55:41 +02:00
commit 97ac8f898a

8
updateVSCodium.sh Normal file
View file

@ -0,0 +1,8 @@
#!/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
wget -q --show-progress -i url -O VSCodium.AppImage
rm url
chmod u+x VSCodium.AppImage