Skip to content

Instantly share code, notes, and snippets.

@DrumRobot
Last active February 16, 2022 02:12
Show Gist options
  • Select an option

  • Save DrumRobot/721e13a5199f33d0917131b818510911 to your computer and use it in GitHub Desktop.

Select an option

Save DrumRobot/721e13a5199f33d0917131b818510911 to your computer and use it in GitHub Desktop.
Update chromedriver for Ubuntu google-chrome-stable
TempFile=$(mktemp)
Version=$(dpkg -s google-chrome-stable | grep '^Version' | grep -o -E '[0-9.]+' | grep -m1 '.')
echo ${TempFile}
wget -O ${TempFile} https://chromedriver.storage.googleapis.com/${Version}/chromedriver_linux64.zip
unzip -u ${TempFile} -d ~/bin
rm ${TempFile}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment