Fclose » History » Revision 2
Revision 1 (Per Amundsen, 02/10/2014 01:56 PM) → Revision 2/6 (Per Amundsen, 06/27/2014 02:19 PM)
_Added in 1.8.10_ */fclose <handle>* Closes the file associated with this handle. If you specify a wildcard, all matching handles handle are closed. *Parameters* <handle> - The handle to close. *Example* <pre> alias example { ;Open a file. /fopen -o x example.txt ;write to the file /fwrite x Print this line. ;Close the file handle /fclose x } </pre>