Is there a way to write a BASH script that will append a string to every file in a directory?
e.g., I want to append the string "test" to every .html file in the current working directory I'm in; something like:
echo "test" >> *.html
But of course this doesn't work.