APPEND: Difference between revisions

From Dark Signs Online
Jump to navigationJump to search
(Created page with "Appends data to the end of a file <pre>APPEND myFile.txt test 1 APPEND myFile.txt test 2 APPEND myFile.txt test 3 $myVar = test 4 APPEND myFile.txt $myVar</pre> And myFile.txt will look like this <pre>test 1 test 2 test 3 test 4</pre>")
 
(No difference)

Latest revision as of 04:47, 18 March 2024

Appends data to the end of a file

APPEND myFile.txt test 1
APPEND myFile.txt test 2
APPEND myFile.txt test 3
$myVar = test 4
APPEND myFile.txt $myVar

And myFile.txt will look like this

test 1
test 2
test 3
test 4