DimitrisJim / Bookmarks

Keep around bookmarks in issues for better tagging, notes.
0 stars 0 forks source link

Usefull command line tools #4

Open DimitrisJim opened 1 year ago

DimitrisJim commented 1 year ago

base64

Can be used to transform text into base64 encoding:

echo -n some_text | base64
c29tZV90ZXh0

Same regardless of quoting, i.e "some_text" vs some_text

DimitrisJim commented 1 year ago

xxd

Creates a hexdump or converts a hexdump back to binary. Basically similar to hexdump (as described in the wiki).