18.4.0 released Sep 25, 2023 |
write-file <file> | ( file-id <file id> ) \ from <content> \ [ length <length> ] \ [ ( position <position> ) | ( append [ <append> ] ) ] \ [ status [ define ] <status> ]
write-file "/path/to/file" from "Hello World"
char *path="/path/to/file"; char *cont="Hello World"; write-file path from cont append
char *cont="Hello World"; write-file "file" from cont length 5 status define st
char *cont="Hello"; write-file "file" from cont position 3 status define st