Skip to content

Instantly share code, notes, and snippets.

@tiagohillebrandt
Created May 11, 2016 03:54
Show Gist options
  • Save tiagohillebrandt/31466e7054fd8726477bc1d1c119ee1b to your computer and use it in GitHub Desktop.
Save tiagohillebrandt/31466e7054fd8726477bc1d1c119ee1b to your computer and use it in GitHub Desktop.
Determines the current WordPress version
#!/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