Skip to content

Instantly share code, notes, and snippets.

View ardeidae's full-sized avatar
🤡

Matthieu PETIOT ardeidae

🤡
View GitHub Profile
@ardeidae
ardeidae / install_xcode_command_line_tools.sh
Created February 17, 2020 21:07
headless install of xcode command line tools
#!/bin/bash
# headless install of xcode command line tools
if ! xcode-select -p &> /dev/null; then
touch /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress;
CLTX=$(softwareupdate --list | \
grep "\*.*Command Line Tools" | \
tail -n 1 | \
awk -F"Label: " '{print $2}' \
)