The little things give you away... A collection of various small helper stuff
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

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