fprint
int int|float|string|vector
fprint は、取り消し不可能、照会不可能、および編集不可能です。
このコマンドは機能的には print 関数と同等です。違いは、ファイル識別子の引数が必要なことです。なし
// Print a string into a file // $exampleFileName = ( `internalVar -userTmpDir` + "example.tmp" ); $fileId=`fopen $exampleFileName "w"`; fprint $fileId "Hello there\n"; fclose $fileId;