Created
March 14, 2020 14:42
-
-
Save ihsanberahim/1f38e23673a7fa8522b1e20fabc9214e to your computer and use it in GitHub Desktop.
Upgrade latest phpmyadmin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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