home *** CD-ROM | disk | FTP | other *** search
- /*
- * Name: GOPGENFL REXX
- * Author: Rick Troth, Rice University, Information Systems
- * Date: 1993-Jan-22
- *
- * Input: FILELIST records, comments allowed
- * Output: WISHLG input FILELIST records, comments stripped,
- * title appended to each record that lacked
- * Calld by: GOPGEN EXEC via PIPE
- */
-
- uc = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- lc = "abcdefghijklmnopqrstuvwxyz"
-
- Do Forever
-
- 'PEEKTO RECORD'
- If rc ^= 0 Then Leave
-
- If Left(record,1) = ' ' Then Do
- Parse Var record fn ft fm title
- If title = "" Then 'OUTPUT' record Translate(fn||'.'||ft,lc,uc)
- Else 'OUTPUT' record
- If rc ^= 0 Then Leave
- End /* If .. Do */
-
- 'READTO'
- If rc ^= 0 Then Leave
-
- End /* Do Forever */
-
- Exit rc * (rc ^= 12)
-
-