[CHANGE & ADD] Removing typo from SSH. Adding tip for emacs and ssh. Adding cheat for xxd

This commit is contained in:
ImmortalPC
2016-04-19 13:45:47 +02:00
parent f38da23741
commit b6d54b135c
2 changed files with 14 additions and 2 deletions

8
cheat/cheatsheets/xxd Normal file
View File

@@ -0,0 +1,8 @@
# Convert bin/string to hex.
# Result: 34322069732074686520736f6c7574696f6e0a
echo '42 is the solution' | xxd -p
# Convert hex to bin/string.
# Result: 42 is the solution
echo '34322069732074686520736f6c7574696f6e0a' | xxd -r -p