Blogger templates

Monday, 8 April 2013

script to convert binary to decimal number

script to convert binary to decimal number

This is a small script to convert binary number to decimal numbers.

 We already shown how to do hex2dec conversion in our previous post.  In this post too we will use (()) and bc commands to accomplish our task.

Below we will see number of ways to do this conversion using .

Method1: Use (()) brace expatiation.  Let me explain below code


#!/bin/bash
read -p "Please enter a BINARY number: " BIN1
echo "The decimal value of $HEX1 is $((2#$BIN1))"

Save above file as bin2dec.sh

Change permissions to this script now and execute as follows

chmod +x bin2dec.sh
 Executing shell script

./bin2dec.sh

Method2: Using bc command

#!/bin/bash
read -p "Please enter BIN number: " BIN1

echo "ibase=8; $BIN1" | bc

Save above file as bin2dec.sh

Change permissions to this script now and execute as follows

chmod +x bin2dec.sh
Executing shell script./bin2dec.sh

No comments:

Post a Comment

 

Blogroll

Hello Friends myself Sahaj Ohri live at Jaipur city , This Website is mainly for Youth, You can explore a youth network here on www.techowner.blogspot.in As it is generally an information sharing platform when you can get information and also share information. If you are having some information.I am 19 years old guy from India who have interest in making blogs.I am a simple guy who likes to spent his time with Friends,watching movies,and reading various types of books. I loves to sharemy personal view with those people who have interest inmaking website, blog etc.Here I also give you some technical knowledge about making website attractive and some other technical support(knowledge) using WordPress as your CMS.Dear Friends, As an author, I’m trying my best to improve this platform day by day. If you are having any idea or suggestion in your mind about this website then you are free to contact me and share your thought. Contact : For Issues regarding advertisement, copyright issues or ideas sharing, you can contact us on the following details. sahaj.ohri3@gmail.com

About

Hello Friends myself Sahaj Ohri live at Jaipur city , This Website is mainly for Youth, You can explore a youth network here on www.techowner.blogspot.in As it is generally an information sharing platform when you can get information and also share information. If you are having some information.I am 19 years old guy from India who have interest in making blogs.I am a simple guy who likes to spent his time with Friends,watching movies,and reading various types of books. I loves to sharemy personal view with those people who have interest inmaking website, blog etc.Here I also give you some technical knowledge about making website attractive and some other technical support(knowledge) using WordPress as your CMS.Dear Friends, As an author, I’m trying my best to improve this platform day by day. If you are having any idea or suggestion in your mind about this website then you are free to contact me and share your thought. Contact : For Issues regarding advertisement, copyright issues or ideas sharing, you can contact us on the following details. sahaj.ohri3@gmail.com