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
#!/bin/bash | |
# Install/Update Zoom on Fedora/EL | |
# v1 | |
# Adam Boutcher - 2024 - IPPP, Durham Uni (UKI-SCOTGRID-DURHAM) | |
# Zoom Linux Dowload Details | |
# https://zoom.us/rest/download?os=linux | |
# Zoom Linux Download | |
# https://zoom.us/client/6.0.0.4563/zoom_x86_64.rpm |
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
#!/bin/bash | |
# | |
# Termius Debian Extractor | |
# 2023 - Adam Boutcher | |
# | |
T_URL="https://www.termius.com/download/linux/Termius.deb" | |
TE_DIR="/tmp/Terminus" | |
TE_FILE="${TE_DIR}/Termius.deb" |
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
#!/bin/bash | |
# Install/Update Discord | |
# v1 | |
# Adam Boutcher - 2021 - IPPP, Durham Uni (UKI-SCOTGRID-DURHAM) | |
URL="https://discord.com/api/download?platform=linux&format=tar.gz" | |
LOC="/opt" | |
#Function: Check that a binary exists | |
#Usage: check_bin command |