Even better is probably to have a script.sh file which looks like this (same thing but more readable):
#!/bin/bash
sed "s/FNAME/Simone/g;\
s/LNAME/Vittori/g;\
s/EMAIL/[email protected]/g;"
Just chmod +x script.sh
and then use it like:
cat example-template.html | bin/script.sh > compiled.html ; and open compiled.html