The Curious Case of cd
Tue Jan 09, 2018 · 142 words

Did you know that /usr/bin/cd is a shell script? I didn't, but it makes perfect sense when you think about it. Here's what it looks like on macOS:

#!/bin/sh
# $FreeBSD: src/usr.bin/alias/generic.sh,v 1.2 2005/10/24 22:32:19 cperciva Exp $
# This file is in the public domain.
builtin `echo ${0##*/} | tr \[:upper:] \[:lower:]` ${1+"$@"}

And here's the original from FreeBSD:

#!/bin/sh
# $FreeBSD: releng/11.0/usr.bin/alias/generic.sh 151635 2005-10-24 22:32:19Z cperciva $
# This file is in the public domain.
builtin ${0##*/} ${1+"$@"}

Spot the difference? The way I see it, the character translations are there to account for the fact that HFS+, while not case sensitive by default, is case preserving. So when you do this:

mkdir /tmp/LaLaLa

LaLaLa is actually stored as LaLaLa, even though you can't do this:

mkdir /tmp/lalala
mkdir: /tmp/lalala: File exists

But you can still do this:

cd /tmp/lalala

back · essays · credits ·