4 lines
71 B
Bash
4 lines
71 B
Bash
|
#!/bin/bash
|
||
|
xcodebuild -version 2>&1 | (head -n1) | awk '{print $2}'
|
||
|
|