convert...
decimal to hexadecimal#!/bin/sh printf "%x" $@;echohexadecimal to decimal
#!/bin/sh printf "%d" $@;echooctal to decimal
#!/bin/sh printf "%x" $@;echosample:
./oct_dec.sh 0777
511
printf "%d" 0777;echo
511
sample: convert rgb in hex values:
./dec_hex.sh 255 250 200
fffac8
sample: convert hex values of rgb in rgb notation:
./hex_dec.sh 0xff 0xfa 0xc8
255250200



