Come posso aggiungere una variabile di input dell'utente a un file di testo?
Questo è quello che ho adesso:
-- ask user
display dialog "Enter Cheat" default answer "99 Gold, super health, unlimited Grenades.."
set cheat1 to (text returned of result)
-- create text file
set newText to "I am now
adding
a few
test lines"
do shell script "echo " & quoted form of newText & " >> ~/Desktop/test.txt"
Voglio in qualche modo mettere 'cheat1' all'interno del file di testo e non uscire come cheat1, ma come il testo che l'utente ha dato
qualche aiuto?