Last active
July 13, 2020 08:40
-
-
Save midlan/5ef006bf97576916b9391f836a10ce66 to your computer and use it in GitHub Desktop.
Revisions
-
midlan revised this gist
Jul 13, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ wget -q -O - https://api.github.com/repos/vrana/adminer/releases/latest | jq -r '.assets[] | select((.name | endswith("-mysql-en.php")) and (.name | startswith("adminer"))) | .browser_download_url' | xargs wget -q -O - > adminer.php -
midlan revised this gist
Jul 13, 2020 . No changes.There are no files selected for viewing
-
midlan revised this gist
Jul 13, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ wget -q -O - https://api.github.com/repos/vrana/adminer/releases/latest | jq -r '.assets[] | select((.name | endswith("-mysql-en.php")) and (.name | startswith("adminer"))) | .browser_download_url' -
midlan revised this gist
Mar 26, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ wget -q -O - https://api.github.com/repos/vrana/adminer/releases/latest | grep -m1 -P '"browser_download_url".+\-mysql\-cs\.php' | cut -d '"' -f4 | xargs wget -q -O - > adminer.php -
midlan revised this gist
Mar 13, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ wget -q -O - https://api.github.com/repos/vrana/adminer/releases | grep -m1 -P '"browser_download_url".+\-mysql\-cs\.php' | cut -d '"' -f4 | xargs wget -q -O - > adminer.php -
midlan revised this gist
Mar 13, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ wget -q -O - https://api.github.com/repos/vrana/adminer/releases | grep -m1 -P '"browser_download_url".+\-mysql\-cs\.php' | cut -d '"' -f4 | xargs wget -q -O - > ~/adminer.php -
midlan created this gist
Mar 13, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ wget -q -O - https://api.github.com/repos/vrana/adminer/releases | grep -m1 -o -P '(?<="browser_download_url": ").+?mysql-cs.php(?=")' | xargs wget -q -O - > ~/adminer.php