AppleScript - Aggiungi l'input dell'utente al file di testo?

1

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?

    
posta user3316925 30.07.2015 - 22:40
fonte

1 risposta

1

Prova quanto segue:

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"

Risultati:

I am now
    adding
    a few
    test lines
99 Gold, super health, unlimited Grenades..
    
risposta data 30.07.2015 - 23:13
fonte

Leggi altre domande sui tag