:
# Shell script to comment out #ident lines in the /usr/include directory
# which cause GCC a lot of problems.
find /usr/include -type f -name \*.h -print | 
sed 's:^\(.*\)$:sed "s;^\\(#ident.*\\)$;/*\\1*/;" <\1 >/tmp/x ; mv /tmp/x \1:' | sh -x
