Sponsored Content
Top Forums Shell Programming and Scripting How to Convert Hex value to Dec ? Post 302115262 by cfajohnson on Monday 23rd of April 2007 01:36:22 PM
Old 04-23-2007
Quote:
Originally Posted by Nayanajith
Hi All,

I want to convert below Hex value to Dec value in each column .How to do it ? This data is in a 1 file.

4e20 0475
2710 010f
...
7530 65ba
7530 fe15

If your shell has printf builtin (bash, ksh93, ash, etc.), you can do it without any external commands:

Code:
while read a b
do
  printf "%5d %5d\n" "0x$a" "0x$b" 
done < "$FILE"

If the file is very large, you may be better off using awk.


 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Convert Char to Dec using AWK

I'm facing a problem when trying to read a file and convert the content from char to decimal in ASCII. :confused: eg :- Input file : 20051231 8.00 experted result : 50484853495051493256464848 The content of input file is vary very day. I need to use AWK script to program it. Pls... (4 Replies)
Discussion started by: jasmine05
4 Replies

2. Programming

to convert int to hex

Hi, Can you help me in converting int value to hex in a single command. Thanks (8 Replies)
Discussion started by: naan
8 Replies

3. Shell Programming and Scripting

converting hex to dec

Hi Experts, I have a file called "hex" which contains info like below How do i convert everything in this file to decimal value? Please advice. Thanks (4 Replies)
Discussion started by: aismann
4 Replies

4. Programming

Convert HEX to EBCDIC IN C

i want to convert Hex value To EBCDIC value. i tried to convert hex to ascii and then to ebcdic but it doesn't give desired results . it doesn't give corresponding ebcdic value instead it gives some junk values. e.g; Hex EBCDIC ----------------- 81 a 82 b 83 c 84 d 85 e 86 f 87... (6 Replies)
Discussion started by: junaid.nehvi
6 Replies

5. Shell Programming and Scripting

HEX to DEC Conversion Error

I'm trying to convert hex to dec and with the help of output i need to do the process. If i execute the below code assetValue=8f assetNavigation=$(echo "ibase=16; "$assetValue"" | bc) echo $assetNavigation i'm getting the error below $ sh script.sh (standard_in) 1: syntax error... (1 Reply)
Discussion started by: Amutha
1 Replies

6. Shell Programming and Scripting

HEX to DEC Conversion

I'm trying to convert hex to dec and with the help of output i need to do the process. If i execute the below code assetValue=8f assetNavigation=$(echo "ibase=16; "$assetValue"" | bc) echo $assetNavigation i'm getting the error below $ sh script.sh (standard_in) 1: syntax error... (2 Replies)
Discussion started by: Amutha
2 Replies

7. Shell Programming and Scripting

Convert Hex - KSH

Hello, I woild like to convert hex on KSH not BASH: I tried to use: tmp=31 printf "\x"${tmp}"" it works on bash - Output is '1' but not on ksh. please advice on the right syntax. Thanks. (4 Replies)
Discussion started by: LiorAmitai
4 Replies

8. Shell Programming and Scripting

Convert to Hex in perl

Hi, i want to convert number 5860533159 to hexadecimal. i need to use perl. i used $foo = 5860533159; $hexval3 = sprintf("%#x", $foo); i am getting value as 0xffffffff. i need to get value as 0x15D50A3A7. when i converted using google calculator, i got the correct value, expected... (9 Replies)
Discussion started by: asak
9 Replies

9. Shell Programming and Scripting

Convert hex to decimal

can someone help me in converting hex streams to decimal values using perl script Hex value: $my_hex_stream="0c07ac14001676"; Every hex value in the above stream should be converted in to decimal and separated by comma. The output should be: 12,07,172,20,00,22,118 (2 Replies)
Discussion started by: Arun_Linux
2 Replies

10. UNIX for Beginners Questions & Answers

How to convert dec to hex in python?

When I try to convert big numbers I get extra numbers at the end that doesn't move plus an L character too. How to remove the 4 extra characters at the end 000L? 8b8dbbc584d9c000L 8b8dc4ddd34c6000L 8b8dcdf621bf0000L 8b8dd70e7031a000L 8b8de026bea44000L #!/usr/bin/python ... (9 Replies)
Discussion started by: bigvito19
9 Replies
skycoor(1)						      General Commands Manual							skycoor(1)

Name
       skycoor - Convert coordinates

Synopsis
       skycoor [-bdgjv] [-n ndec] ra1 dec1 sys1 ... ran decn sysn
       or
       skycoor [-vbjg] [-n ndec] @listfile

Description
       skycoor	converts  coordinates  between the J2000, B1950, and galactic coordinate systems, rounding to a specified number of decimal places
       and printing in degrees or hh:mm:ss.sss dd:mm:ss.sss.  Input coordinates may also be in either format, and the system (J2000, B1950, or ga-
       lactic) may be in upper or lower case.  No spaces are allowed within  the individual coordinates

Options
       -b     B1950 (FK4) output

       -d     RA and Dec output in degrees

       -e     Ecliptic longitude and latitude output

       -g     Galactic longitude and latitude output

       -i r|d|
	      Input units (r=radians, d=degrees, else hh:mm:sss dd:mm:sss)

       -j     J2000 (FK5) output

       -n <num>
	      Number of decimal places in output RA seconds

       -o <num>
	      Offset coordinates by this many arcseconds

       -p     RA and Dec proper motion in milliarcseconds/year

       -q     Output system, including equinox

       -r <RA> <Dec> <RA> <Dec>
	      Angular separation between two RA, Dec pairs

       -s     Output ra= dec= epoch= radecsys= for sethead

       -v     Print more intermediate information

       -w     Convert RA, Dec equatorial coordinates to x,y,z

       -x     Convert x,y,z equatorial coordinates to RA, Dec

       -y <epoch>
	      Epoch of coordinates in years

Author
       Doug Mink, SAO (dmink@cfa.harvard.edu)

9 November 2001 						     WCSTools								skycoor(1)
All times are GMT -4. The time now is 03:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy