The little things give you away... A collection of various small helper stuff
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

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