Mark,
thank you very much!!!!!!!!!!!!!!

Best Regards,
Paola

Mark E. Hamilton wrote:

Paola Attadio wrote:

I get the next error message:

sed: invalid option -- i


Clearly your sed() doesn't support the '-i/--in-place' option. Something like this shell script should work instead:

#!/bin/bash
for f in $(find . -name CVS -prune -o -type f)
do
  sed 's/\$revision_history[^\$]*/$Log/g' $f > blarg && mv blarg $f
done





_______________________________________________ Info-cvs mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-cvs

Reply via email to