aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/shims/super/sed
blob: 7b1313dac0ff5d33b6535f20bf011ea873ed9735 (plain)
1
2
3
4
5
6
7
8
9
#!/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 "$@"