8 lines
183 B
Plaintext
Raw Normal View History

#!/bin/bash
if [[ $HOMEBREW_CCCFG == *s* ]]; then
# Fix issue with sed barfing on unicode characters on Mountain Lion
unset LC_ALL
export LC_CTYPE='C'
fi
exec /usr/bin/sed "$@"