Skip to content

Instantly share code, notes, and snippets.

@fillup
fillup / check-and-upgrade-zoom.sh
Created October 13, 2021 20:18
Upgrade Zoom on Linux
#!/bin/bash
# Make sure there is no zoom .deb around
touch /tmp/zoom_amd64.deb
rm /tmp/zoom_amd64.deb
# Grab the current one
wget -O /tmp/zoom_amd64.deb https://zoom.us/client/latest/zoom_amd64.deb
ISINSTALLED=`dpkg -l | grep "ii zoom" | wc -l`