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ů.
 
 
 

6 řádky
276 B

  1. #!/bin/bash
  2. # Like base64 but for the URL-safe alphabet A-Za-z0-9-_ (instead of A-Za-z0-9+/).
  3. # This works by replacing occurrences of - with + and vice-versa, and likewise with _ and /.
  4. # Does not support passing the filename by argument.
  5. tr -- '\-_+/' '+/\-_' | base64 "$@"