NAME
String2File — Create a file, write string to it, and close the file.
SYNOPSIS
String2File StringValue OutFilePath
DESCRIPTION
Return Value
None.
Arguments
StringValueString to write from.
OutFilePathFilepath to write to.
More Info
Note that there already exists the command ::fileutil::writeFile, which is very similar in functionality, but has a different order of arguments. We missed this when putting together Gen, and thanks to those who pointed it out. You may well prefer to use this command.

For information regarding exceptions / errors, see here.
EXAMPLES
% String2File "abc" test.txt
% cat test.txt
abc
SEE ALSO
File2List, File2String, List2File
KEYWORDS
conversion, file, string