Quotidien Shaarli

Tous les liens d'un jour sur une page.

February 14, 2018

Base64 Encode or Decode on the command line without installing extra tools on Linux, Windows or macOS | Igor Kromin

Tiens il est possible d'encoder un fichier en B64 directement depuis la ligne de commande Windows.

Encoder :
certutil -encode data.txt tmp.b64 && findstr /v /c:- tmp.b64 > data.b64

Décoder :
certutil -decode data.b64 data.txt