Skip to content

Instantly share code, notes, and snippets.

@josefglatz
Created June 1, 2020 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josefglatz/007dfe4c1976430cdc2aebd5725bde42 to your computer and use it in GitHub Desktop.
Save josefglatz/007dfe4c1976430cdc2aebd5725bde42 to your computer and use it in GitHub Desktop.
Get TYPO3 version from TYPO3 CLI binary
# show version and applicationContext
./web/bin/typo3 | head -1
# Extract version only
./bin/typo3 | head -1 | grep -P '[0-9]+(\.[0-9]+)?([^\s]+)' -o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment