Skip to content

Instantly share code, notes, and snippets.

@kyubuns
Created September 2, 2024 02:24
Show Gist options
  • Save kyubuns/672cf53f728c6d529113c4502de82efa to your computer and use it in GitHub Desktop.
Save kyubuns/672cf53f728c6d529113c4502de82efa to your computer and use it in GitHub Desktop.
Unity.exe \
-batchmode \
-logFile EditorLog.txt \
-projectPath ProjectPath
process_id=$!
tail -f EditorLog.txt &
tail_pid=$!
wait $process_id
unity_status=$?
kill $tail_pid
exit $unity_status
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment