Initializing help system before first use

fsort

Purpose
Sort the lines of a file.
Synopsis
procedure fsort(sense:boolean, src:text, dst:text)
Arguments
sense 
Sense of the sorting ( SYS_UP or SYS_DOWN).
src 
Source file.
dst 
Destination file (can be the same as src).
Example
Assuming the file 'unsorted.txt' contains the numbers 1,5,4,2 on individual rows, we can display its sorted contents as follows:
 fsort(SYS_UP, "unsorted.txt","sorted.txt")
   ! -> SORT unsorted.txt sorted.txt
 cat("sorted.txt","")
   ! -> CAT sorted.txt
   ! 1
   ! 2
   ! 4
   ! 5
Further information
Execution of the program terminates if the operation fails and exitonfail is true.

© 2001-2025 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.