Buongiorno,
ho scritto un semplice programma batch che dovrebbe servire per "installare" un file html, di fatto scrivendolo.
di seguito il codice:
echo <html> >> file.html
echo comandi html >> file.html
echo </html> >> file.html
purtroppo la presenza dei simboli "<" e ">" manda in confusione il promt dei comandi che li interpreta come il comando per esportare il testo del file.
Esiste un modo per far interpretare, ad esempio, l'intera string "<html>" come testo da esportare nel file finale?
Grazie