WolframLang: Write File

By Xah Lee. Date: .
WriteString[ fileNameOrPath, string]
writes String to a file.
  • if the file does not exist, it is created.
  • if the file already exists, it is overwritten.
WriteString[ "xxtest", "
some
thing"]

WolframLang: Shell Tasks