8 lines
188 B
Bash
8 lines
188 B
Bash
if [ -n "$FORCE" ] || ! command -v zoom &>/dev/null; then
|
|
cd ~/Downloads
|
|
wget https://zoom.us/client/latest/zoom_amd64.deb
|
|
sudo apt install ./zoom_amd64.deb
|
|
rm zoom_amd64.deb
|
|
cd -
|
|
fi
|