Skip to content

Instantly share code, notes, and snippets.

@charlmert
charlmert / debian_install_older_chrome.sh
Last active April 13, 2024 07:05
Script to download and install older versions of google chrome. -l to list numbers and then -d number example -d8 to download 89.0.4389.114-1
#~/bin/bash
usage() { echo "Usage: $0 [-d <number>] [-l]" 1>&2; exit 1; }
while getopts ":d:" o; do
case "${o}" in
d)
d=${OPTARG}
;;
esac