The little things give you away... A collection of various small helper stuff
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

4 rader
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'