{"id":129364,"date":"2020-12-29T03:06:26","date_gmt":"2020-12-29T03:06:26","guid":{"rendered":"https:\/\/onet.com.vn\/convert-hexadecimal-to-decimal-in-bash.html"},"modified":"2020-12-29T03:06:26","modified_gmt":"2020-12-29T03:06:26","slug":"convert-hexadecimal-to-decimal-in-bash","status":"publish","type":"post","link":"https:\/\/onet.com.vn\/convert-hexadecimal-to-decimal-in-bash\/","title":{"rendered":"Convert Hexadecimal to Decimal in Bash"},"content":{"rendered":"\n
Four types of number systems are popular in computer systems. These are Decimal, Binary, Octal and Hexadecimal. The binary system is 2 based and all arithmetic calculations are done by computer in Binary system. It uses only two digits, 0 and 1 for calculation. The number system that we use for general calculation is decimal system which is 10 based. 0 to 9 numbers are used in the decimal system for calculation. The octal number system is 8 based and represented by 0 to 7 digits. The hexadecimal number system is 16 based and it uses 0 to 9 and A to F characters to represents the number. You can easily convert one number to another number system using the bash script. How you can convert Hexadecimal (hex) number to Decimal number in Bash is shown in this tutorial using various examples.<\/p>\n

Example-1: Using obase, ibase and bc <\/strong><\/h1>\n

One of the simple ways to convert any number system to another number system is to use ibase, obase and bc. Create a bash file named hextodec1.sh <\/strong>and add the following code. According to this example, a hex number will be taken as input and converted into the decimal number based on the value of obase and ibase. Here, obase is set to 10 for converting decimal number, ibase is set to 16 to take the input number as hex number and `bc`<\/strong> command is used for conversion.<\/p>\n

\n
#!\/bin\/bash<\/span>
echo<\/span> "Type a hex number"<\/span>
read<\/span> hexNum
echo<\/span> -n<\/span> "The decimal value of $hexNum<\/span>="<\/span>
echo<\/span> "obase=10; ibase=16; $hexNum<\/span>"<\/span> |<\/span> bc<\/span><\/div>\n<\/div>\n

Output:<\/strong><\/p>\n

Run the script with bash command and give any hexadecimal number as input to find out the decimal value.<\/p>\n

\n
$ <\/span>bash<\/span> hextodec1.sh<\/div>\n<\/div>\n

<\/p>\n

Example-2: Using ibase, command line argument and bc<\/strong><\/h2>\n

Create a bash file named hextodec2.sh <\/strong>and add the following code. In this example, the input value has to give in the command line argument, which will be read by $@. <\/strong>\u00a0Here, just ibase with 16 value is used to convert hex to the decimal number.\u00a0 <\/strong><\/p>\n

\n
#!\/bin\/bash<\/span>
echo<\/span> -n<\/span> "The decimal value of $@="<\/span>
echo<\/span> "ibase=16; $@"<\/span>|<\/span>bc<\/span><\/div>\n<\/div>\n

Output:<\/strong><\/p>\n

Run the script with bash command, file name and a hexadecimal number as command line argument. Here, FF<\/strong> is given as command line argument which is taken as hex value.<\/p>\n

\n
$ <\/span>bash<\/span> hextodec2.sh FF<\/div>\n<\/div>\n

<\/p>\n

Example-3: using printf method<\/strong><\/h3>\n

Another option for converting hex to the decimal number is printf<\/strong>. \u2018%d\u2019 <\/strong>format specifier is used in printf<\/strong> method to convert any number to decimal number. Create a bash file named hextodec3.sh <\/strong>and add the following code. According to this script, a hex number will be taken as input and it is used in printf <\/strong>method with %d <\/strong>to print the decimal value.<\/p>\n

\n
#!\/bin\/bash<\/span>
echo<\/span> "Type a hex number"<\/span>
read<\/span> hexNum
printf<\/span> "The decimal value of $hexNum<\/span>=%dn<\/span>"<\/span> $(<\/span>(<\/span>16<\/span>#$hexNum))<\/span><\/div>\n<\/div>\n

Output:<\/strong><\/p>\n

Run the script with bash command and give any hexadecimal number as input to find out the decimal value.<\/p>\n

\n
$ <\/span>bash<\/span> hextodec3.sh<\/div>\n<\/div>\n

<\/p>\n

Example-4: using double brackets<\/strong><\/h3>\n

There is another way to convert hex to the decimal number without using ibase, obase and bc or printf method. You can use double brackets expression with 16 base to convert hex to the decimal number. Create a bash file named hextodec4.sh <\/strong>and add the following code. Here, echo command will take the number as hex and print the output in the decimal number system.<\/p>\n

\n
#!\/bin\/bash<\/span>
echo<\/span> "Type a hex number"<\/span>
read<\/span> hexNum
echo<\/span> $(<\/span>(<\/span> 16<\/span>#$hexNum ))<\/span><\/div>\n<\/div>\n

Output:<\/strong><\/p>\n

Run the script with bash command and give any hexadecimal number as input to find out the decimal value.<\/p>\n

\n
$ <\/span>bash<\/span> hextodec4.sh<\/div>\n<\/div>\n

<\/p>\n

Example-5: Converting the list of hexadecimal numbers<\/strong><\/h3>\n

Suppose, you have a text file named \u2018hexList.txt\u2019<\/strong> that contains the following list of hex numbers.<\/p>\n

\n
HexList.txt
AB05
FF
ABCD
ACCD
BED<\/div>\n<\/div>\n

Create a bash file named hextodec5.sh <\/strong>and add the following code to convert each hex value of hexList.txt<\/strong> into the decimal value. Here, obase, ibase, and bc are used for conversion. while<\/strong> loop is used to read each hex value from the text file, convert to decimal value and print.<\/p>\n

\n
#!\/bin\/bash<\/span>
while<\/span> read<\/span> number
do<\/span>
echo<\/span> -n<\/span> "The decimal value of $number<\/span>(Hex)="<\/span>
echo<\/span> "obase=10; ibase=16; $number<\/span>"<\/span> |<\/span> bc<\/span>
done<\/span> <<\/span> hexList.txt<\/div>\n<\/div>\n

Output:<\/strong><\/p>\n

Run the script with bash command. There are five hex values in the text file and the output shows five decimal values after conversion.<\/p>\n

\n
$ <\/span>bash<\/span> hextodec5.sh<\/div>\n<\/div>\n

<\/p>\n

This tutorial shows multiple ways to convert hex to decimal values using the bash script. You can follow any of the ways for your conversion purpose. You can also convert other number systems using the scripts mentioned in this tutorial just by changing the base value.<\/p>\n<\/p><\/div>\n","protected":false},"excerpt":{"rendered":"

Four types of number systems are popular in computer systems. These are Decimal, Binary, Octal and Hexadecimal. The binary system is 2 based and all arithmetic calculations are done by computer in Binary system. It uses only two digits, 0 and 1 for calculation. The number system that we use for general calculation is decimal […]<\/p>\n","protected":false},"author":1,"featured_media":129365,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[245],"tags":[],"_links":{"self":[{"href":"https:\/\/onet.com.vn\/wp-json\/wp\/v2\/posts\/129364"}],"collection":[{"href":"https:\/\/onet.com.vn\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onet.com.vn\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onet.com.vn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/onet.com.vn\/wp-json\/wp\/v2\/comments?post=129364"}],"version-history":[{"count":0,"href":"https:\/\/onet.com.vn\/wp-json\/wp\/v2\/posts\/129364\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/onet.com.vn\/wp-json\/wp\/v2\/media\/129365"}],"wp:attachment":[{"href":"https:\/\/onet.com.vn\/wp-json\/wp\/v2\/media?parent=129364"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onet.com.vn\/wp-json\/wp\/v2\/categories?post=129364"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onet.com.vn\/wp-json\/wp\/v2\/tags?post=129364"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}