2016-08-08 16:00:12 +02:00

10 lines
184 B
Bash
Executable File

#!/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 "$@"