Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

12 rindas
284 B

  1. # Deletes comments and collapses whitespace in ##-packages files
  2. # Append (N)ext line to buffer
  3. # if (!)not ($)buffer is EOF, (b)ranch to (:)label loop
  4. :loop
  5. N
  6. $ !b loop
  7. # Buffer is "line1\nline2\n...lineN", del comments and collapse whitespace
  8. s/#[^\n]*//g
  9. s/[[:space:]]\{1,\}/ /g