1 2 3 4 5 6 7
#!/bin/bash for fisier in *.tcl ; do echo $fisier ; sed -e "s/show_error/showError/g" <$fisier >temp mv temp $fisier done