Created
December 27, 2024 20:27
-
-
Save unique-EJ/29ef453cf54adb2ad97684ea3d56acb3 to your computer and use it in GitHub Desktop.
Linux command-line to convert decimal values to hexadecimal.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Linux command-line - AWK text processing language program. | |
| awk $'BEGIN { print "Type decimal (input) values to have the converted hexadecimal value output. CTRL-d to end." }\n{ printf "%s%x\\n", "Hex: ", $0 }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment