All pastes #398049 Raw Edit

Unnamed

public text v1 · immutable
#398049 ·published 2007-03-16 22:28 UTC
rendered paste body
#!/bin/sh

for t in *.[ch]; do
  echo fix $t
  sed -e 's/replace this text/replacement/g' < $t > $t.new
  mv $t.new $t
done