Some nuggets of wisdom about coding and tweaking software
Replace TODO in index files with Capitalized folder name
file_name=index.html
pattern=TODO
for file_path in $(find -type f -name $file_name); do
dir=$(basename $(dirname $file_path))
word=${dir^}
sed -i -e "s/$pattern/$word/g" $file_path
done