mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-02-14 09:39:51 +00:00
title, homepage, tagline
| title | homepage | tagline |
|---|---|---|
| XCode Command Line Tools | https://webinstall.dev/commandlinetools | The XCode Command Line Tools include git, swift, make, clang, and other developer tools |
Cheat Sheet
The developer tools provided by Apple for macOS.
- git
- swift
- make
- clang
- etc
This is also part of webi-essentials.
Table of Contents
- Files
- Manual Install
- macOS
- Linux
- Alpine
- Windows
Files
These are the files / directories that are created and/or modified with this install:
/Library/Developer/CommandLineTools/
How to Install Manually
It's very easy to start the installer:
xcode-select --install
The trick is to also have a mechanism to know when it has finished:
while ! test -x /Library/Developer/CommandLineTools/usr/bin/git ||
! test -x /Library/Developer/CommandLineTools/usr/bin/make; do
sleep 0.25
done
echo "Command Line Tools Installed"