¿Cómo puedo agregar una variable de entrada de usuario a un archivo de texto?
Esto es lo que tengo ahora:
-- 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"
Quiero poner de alguna manera 'cheat1' dentro del archivo de texto y no salir como cheat1, sino como el texto que dio el usuario
¿Alguna ayuda?