write-file <file> | ( file-id <file id> ) \ from <content> \ [ length <length> ] \ [ ( position <position> ) | ( append [ <append> ] ) ] \ [ status <status> ]Copied!
write-file "/path/to/file" from "Hello World"Copied!
set-string path="/path/to/file" set-string cont="Hello World" write-file path from cont appendCopied!
set-string cont="Hello World" write-file "file" from cont length 5 status stCopied!
set-string cont="Hello" write-file "file" from cont position 3 status stCopied!