Skip to content

Instantly share code, notes, and snippets.

@ihsanberahim
Created March 14, 2020 14:42
Show Gist options
  • Save ihsanberahim/1f38e23673a7fa8522b1e20fabc9214e to your computer and use it in GitHub Desktop.
Save ihsanberahim/1f38e23673a7fa8522b1e20fabc9214e to your computer and use it in GitHub Desktop.
Upgrade latest phpmyadmin
DATA="$(wget https://www.phpmyadmin.net/home_page/version.txt -q -O-)"
URL="$(echo $DATA | cut -d ' ' -f 3)"
VERSION="$(echo $DATA | cut -d ' ' -f 1)"
wget https://files.phpmyadmin.net/phpMyAdmin/${VERSION}/phpMyAdmin-${VERSION}-english.tar.gz
tar xvf phpMyAdmin-${VERSION}-english.tar.gz
rsync -av phpMyAdmin-${VERSION}-english/ /usr/share/phpmyadmin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment