aboutsummaryrefslogtreecommitdiffstats
path: root/Library/ENV/4.3/sed
blob: 420e39669f28682c99f3e1833212e50885856b07 (plain)
1
2
3
4
5
6
7
#!/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 "$@"