AppleScript - ¿Agregar entrada de usuario al archivo de texto?

1

¿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?

    
pregunta user3316925 30.07.2015 - 22:40

1 respuesta

1

Prueba lo siguiente:

set cheat1 to the quoted form of text returned of (display dialog "Enter Cheat" default answer "99 Gold, super health, unlimited Grenades..")

set newText to quoted form of "I am now
    adding
    a few
    test lines"

do shell script "echo " & newText & " >> ~/Desktop/test.txt"
do shell script "echo " & cheat1 & " >> ~/Desktop/test.txt"

Resultados:

I am now
    adding
    a few
    test lines
99 Gold, super health, unlimited Grenades..
    
respondido por el user3439894 30.07.2015 - 23:13

Lea otras preguntas en las etiquetas