選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

12 行
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