Sunday 10 March 2013

EDIT Line commands - Flow fragments of text into a paragraph



TF
Flow text to the end of paragraph which is either a blank line or an indentation.
TFn
n is the column number. This will flow the text using the column number as the right margin

Type command TF on the line as shown below

XX00       M0001.D00.TEST.JCL(TESTJCL1) - 03.09           Columns 00001 00072
Command ===>                                                  Scroll ===> CSR 
000005 //           DCB=(LRECL=80,RECFM=FB,BLKSIZE=)                          
000006 //SYSIN   DD *                                                         
tf0007 12                                                                      
000008 SUKUL                                                                  
000009 MAHADIK                                                                
000010 35000                                                                   
000011 Y                                                                      
000012 30                                                                     
000013 DUSHYANT                                                               
000014 JADAV                                                                  
000015 67000                                                                  
000016 Y                                                                      
000017 40                                                                      
000018 MAHENDRA                                                               
000019 GAREWAL                                                                
000020 20000                                                                   
000021 N                                                                      
000022 /*                                                                     
****** **************************** Bottom of Data ****************************

Type enter and we get following output

XX00       M0001.D00.TEST.JCL(TESTJCL1) - 03.10           Columns 00001 00072
Command ===>                                                  Scroll ===> CSR 
000005 //           DCB=(LRECL=80,RECFM=FB,BLKSIZE=)                          
000006 //SYSIN   DD *                                                         
000007 12 SUKUL MAHADIK 35000 Y 30 DUSHYANT JADAV 67000 Y 40 MAHENDRA GAREWAL 
000008 20000 N /*                                                              
****** **************************** Bottom of Data ****************************

If we use a column number 20 as the right margin we use the command TF20

XX00       M0001.D00.TEST.JCL(TESTJCL1) - 03.09           Columns 00001 00072
Command ===>                                                  Scroll ===> CSR 
000006 //SYSIN   DD *                                                         
tf2007 12                                                                      
000008 SUKUL                                                                  
000009 MAHADIK                                                                
000010 35000                                                                  
000011 Y                                                                      
000012 30                                                                     
000013 DUSHYANT                                                               
000014 JADAV                                                                   
000015 67000                                                                  
000016 Y                                                                      
000017 40                                                                      
000018 MAHENDRA                                                               
000019 GAREWAL                                                                
000020 20000                                                                   
000021 N                                                                      
000022 /*                                                                     
****** **************************** Bottom of Data ****************************

Hitting enter gives following output. Note that right margin is restricted to column position 20

XX00       M0001.D00.TEST.JCL(TESTJCL1) - 03.10           Columns 00001 00072
Command ===>                                                  Scroll ===> CSR 
000006 //SYSIN   DD *                                                         
000007 12 SUKUL MAHADIK                                                       
000008 35000 Y 30 DUSHYANT                                                    
000009 JADAV 67000 Y 40                                                       
000010 MAHENDRA GAREWAL                                                       
000011 20000 N /*                                                             
****** **************************** Bottom of Data ****************************


 

No comments:

Post a Comment