home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / STK100.ZIP / STKSRC.COM / STRIPCMT < prev   
Encoding:
Text File  |  1990-10-20  |  195 b   |  5 lines

  1. ### An AWK script to strip comments and empty lines from a C source file
  2. /^\/\*\**/    { no_print=1; }
  3.         { if (!no_print && $0!="" && substr($0,1,5)!="#incl") print }
  4. /^\*\**\/$/    { no_print=0 }
  5.