Created
May 11, 2016 03:54
-
-
Save tiagohillebrandt/31466e7054fd8726477bc1d1c119ee1b to your computer and use it in GitHub Desktop.
Determines the current WordPress version
This file contains 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
#!/bin/bash | |
# | |
# Determines the current WordPress version | |
# | |
curl -s https://core.svn.wordpress.org/tags/ | grep "<li>" | egrep -o "[0-9]\.[0-9](\.[0-9]{1,})?" | sort | uniq -d | tail -n1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment