home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / hcshdemo.zip / csh-os2.zip / SAMPLES / SH_2_CSH / IF.SED < prev    next >
Text File  |  1993-11-24  |  210b  |  11 lines

  1. #    Fixup if statements:
  2.  
  3. #        if [ expr ]                    if ( expr ) then
  4. #        then                    -->        
  5. #            :                                :
  6. #        fi                                end
  7.  
  8. /^[     ]*then[     ]*$/d
  9. /^[     ]*if/s/[[(]\([^])]*\)[])]/(\1) then/
  10. /^[     ]*fi[     ]*$/s/fi/end/}
  11.