The little things give you away... A collection of various small helper stuff
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

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