mirror of
https://github.com/Erreur32/cheat.git
synced 2024-10-31 21:11:07 +01:00
9 lines
231 B
Plaintext
9 lines
231 B
Plaintext
# 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
|
|
|