Install Imagemagick

Mac:

brew install imagemagick

Ubuntu:

apt-get install imagemagick

Bash it

convert --help | grep strip
  -strip strip image of all profiles and comments
for i in $( ls ); do convert $i -strip $i; done