Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Last active November 27, 2023 11:36
Show Gist options
  • Save guitarrapc/3a7d21b73e789609db86c6b856870871 to your computer and use it in GitHub Desktop.
Save guitarrapc/3a7d21b73e789609db86c6b856870871 to your computer and use it in GitHub Desktop.
Extract UnityVersion from ProjectVErsion.txt

Usage

cd UnityPath
cat ./ProjectSettings/ProjectVersion.txt | grep "m_EditorVersion:" | cut -d ' ' -f 2
# 2021.3.17f1
#!/bin/bash
set -eo pipefail
cat ./ProjectSettings/ProjectVersion.txt | grep "m_EditorVersion:" | cut -d ' ' -f 2
m_EditorVersion: 2021.3.17f1
m_EditorVersionWithRevision: 2021.3.17f1 (3e8111cac19d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment