The little things give you away... A collection of various small helper stuff
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

6 righe
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 "$@"