The little things give you away... A collection of various small helper stuff
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

4 řádky
201 B

  1. #!/bin/bash
  2. # Sort == level-two wiki sections == alphabetically while keeping all section contents (including subsections) in the given order
  3. tr '\n' '\r' | sed 's,\r== ,\n== ,g' | sort | tr '\r' '\n'