Apple’s man page says Multiple commands may be specified by using the -e or -f options. So I’d say
find . -type f -exec sed -i '' -e s/Red/$color1/g -e s/Blue/$color2/g {} \;
This certainly works in Linux and other Unices.
Apple’s man page says Multiple commands may be specified by using the -e or -f options. So I’d say
find . -type f -exec sed -i '' -e s/Red/$color1/g -e s/Blue/$color2/g {} \;
This certainly works in Linux and other Unices.