incremental addition of hex decimal number in one field


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting incremental addition of hex decimal number in one field
# 1  
Old 06-01-2009
incremental addition of hex decimal number in one field

Hi I want to incremental add hex decimal number to a particula field in file

eg: addr =123 dept1=0
addr = 345 dept2 =1
addr2 = 124 dept3 =2
.
.
.
.
.
.
addr3 =567 dept15 =f

Is there any command which add incremental number to particula field in file

thank you
# 2  
Old 06-01-2009
Can you explain your requirement more clearly?

you can convert base with unix bc.. and make a loop to increment.

eg

Code:
for i in 100 101 102 103; do  echo "ibase=10;obase=16;$i" | bc; done


hope it helps.
# 3  
Old 06-01-2009
my requirement is simple i want to deptno field to get incremental hex value..i am doing manually by entering 0 1 2 3 for each field in the file..i want it one shot...
# 4  
Old 06-01-2009
Quote:
Originally Posted by diddi_linux
my requirement is simple i want to deptno field to get incremental hex value..i am doing manually by entering 0 1 2 3 for each field in the file..i want it one shot...
Here's one way to do it:

Code:
$
$ perl -e 'foreach $i (0..30){printf "dept%d = %x\n",$i,$i}'
dept0 = 0
dept1 = 1
dept2 = 2
dept3 = 3
dept4 = 4
dept5 = 5
dept6 = 6
dept7 = 7
dept8 = 8
dept9 = 9
dept10 = a
dept11 = b
dept12 = c
dept13 = d
dept14 = e
dept15 = f
dept16 = 10
dept17 = 11
dept18 = 12
dept19 = 13
dept20 = 14
dept21 = 15
dept22 = 16
dept23 = 17
dept24 = 18
dept25 = 19
dept26 = 1a
dept27 = 1b
dept28 = 1c
dept29 = 1d
dept30 = 1e
$

tyler_durden
# 5  
Old 06-01-2009
similarly with awk
Code:
 awk '{printf "%s%d %x\n", $1, ++j,i++}' file

# 6  
Old 06-03-2009
thank you all..i would like get values addr field from one and dept field incremental value of hexdecimal
addr={1st field from any other file1} dept={incremental value of hex decimal }
addr= 601 dept =0
addr =602 dept=1
addr = 603 dept =2
.
.
.
.
addr =670 dept=1f
# 7  
Old 06-03-2009
Quote:
Originally Posted by diddi_linux
...i would like get values addr field from one and dept field incremental value of hexdecimal
addr={1st field from any other file1} dept={incremental value of hex decimal }
...
Assuming that you've captured and stored the first addr value from the file in $first:

Code:
$
$
$ perl -e '$first=601; foreach $i (0..69){printf "addr = %d dept = %x\n",($i+$first),$i}'
addr = 601 dept = 0
addr = 602 dept = 1
addr = 603 dept = 2
addr = 604 dept = 3
addr = 605 dept = 4
addr = 606 dept = 5
addr = 607 dept = 6
addr = 608 dept = 7
addr = 609 dept = 8
addr = 610 dept = 9
addr = 611 dept = a
addr = 612 dept = b
...
... <skipped a few lines>
...
addr = 668 dept = 43
addr = 669 dept = 44
addr = 670 dept = 45
$
$

tyler_durden
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Converting decimal to hex

How to convert decimal value to hex and than take 1st digits as variable sample data 84844294,5,6 51291736,2,3 84844294,5,6 51291736,2,3 i can use {printf "%x,%d\n",$1,$2} but than i want to filter base on 1st hex digit 1st recrd (1 Reply)
Discussion started by: before4
1 Replies

2. 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

3. Shell Programming and Scripting

addition of decimal no

a=10.00 pattern=-11.00 b=`echo "$a $pattern" | awk ' printf("%d\n", $1 + $2)'` echo $b not working, also trined bc ,dc but thats not on my m/c. also expr not supporting. any clue? (6 Replies)
Discussion started by: saluja.deepak
6 Replies

4. Shell Programming and Scripting

Converting hex to ascii/decimal

I am writing a bash script to do some parsing on a log and I am running into a problem when it comes to converting only certain sections of the file from hex to ascii or hex to decimal. Data Example: The hex values after Hardware and SW Version I need to convert from Hex to ASCII and the... (16 Replies)
Discussion started by: Shiftkey
16 Replies

5. Shell Programming and Scripting

Bash Decimal Addition using bc

Hi guys/gals i have a quick question. I am trying to read from a file and add the values up but the problem is the values are not integers their floats so i tried to used bc but failed epicly lol. Any tips would be great. Thanks this is the code i have so far : while read num do ... (6 Replies)
Discussion started by: vb615
6 Replies

6. Shell Programming and Scripting

Decimal to hex conversion

Dear All PROs Thanks in advance need a shell for Decimal to hex conversion input file (decimal values) 65,5,48,66,133,131,118,47 65,5,48,66,133,131,83,63 . . desire output should be (Hex value)... (11 Replies)
Discussion started by: The_Archer
11 Replies

7. Shell Programming and Scripting

Convert hex to decimal or reverse is better?

Please Help Me! about the problem down under. I have 2 files with nearly the same characteristics, I have to convert one to the other format or the other format to one's format. I want to write it with awk. The first file contain lines like this: 300000001#A#Y#Y#Y#Y The other file contain... (4 Replies)
Discussion started by: Axel82
4 Replies

8. Shell Programming and Scripting

How to convert hex numbers to decimal ?

Hi, please tell me how to convert hex number to decimal 000000E7 000000000002640D 0000000000025B16 and seconds to minutes, hours, days, months, years bytes to kbytes, mbytes , gbytes read the following examples while read a b do printf "%5d %5d\n" "0x$a" "0x$b" done < "$FILE"... (15 Replies)
Discussion started by: jack2
15 Replies

9. Shell Programming and Scripting

hex to decimal

hi all, echo "ibase=16;obase=10;11" | bc shouldn't i get 17? i am getting 11 i am trying to convert 11 (hex) to decimal stuck! JAK (4 Replies)
Discussion started by: jakSun8
4 Replies

10. Shell Programming and Scripting

Hex to Decimal Convertion

Dear all, I have a file like this. EE48 4473 7FC9 EE48 102C D23 EE48 4DD 27D EE48 0 0 EE48 3FFE 854 F230 DC6 ... (1 Reply)
Discussion started by: Nayanajith
1 Replies
Login or Register to Ask a Question