dec2hex
#!/bin/sh
printf "%X\n" $1
hex2dec (bash only)
#!/bin/sh
echo $((0x$1))
dec2hex
#!/bin/sh
printf "%X\n" $1
hex2dec (bash only)
#!/bin/sh
echo $((0x$1))
This page contains a single entry by Pank published on July 22, 2004 10:09 AM.
startx procedure in Mandrake was the previous entry in this blog.
Netscape fullscreen is the next entry in this blog.
Find recent content on the main index or look in the archives to find all content.
Very useful! I usually put hex #s in filenames for organizational purposes. Also good for finally finding out what "DEADBEEF" is in decimal!
Thanks!