Sponsored Content
Top Forums Shell Programming and Scripting incremental addition of hex decimal number in one field Post 302321660 by ghostdog74 on Monday 1st of June 2009 10:40:37 PM
Old 06-01-2009
similarly with awk
Code:
 awk '{printf "%s%d %x\n", $1, ++j,i++}' file

 

10 More Discussions You Might Find Interesting

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

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

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

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

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

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

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

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

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. 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
mprotect(2)							System Calls Manual						       mprotect(2)

NAME
mprotect() - set or check protection of memory mapping SYNOPSIS
DESCRIPTION
The function changes the access protections on the mappings specified by the range [addr, addr+len], rounding len up to the next multiple of the page size as returned by to be that specified by prot. Legitimate values for prot are the same as those permitted for and are defined in Page can be read. Page can be written. Page can be executed. Page cannot be accessed. Check page effective permissions If flag is specified, checks the access protections on the mappings specified with the rest of prot value to see if the requested permis- sions are set. If the address range being modified corresponds to a mapped file that was mapped with grants write access permission only if the file descriptor used to map the file was opened for writing. If the address range corresponds to a mapped file that was mapped with the or the flag, grants all requested access permissions. When fails for reasons other than the protections on some of the pages in the range [addr, addr+len] may have been changed. For example, if an error occurs on some page at an addr2, then may have modified the protections of all whole pages in the range [addr,addr2]. RETURN VALUE
Upon successful completion, returns Otherwise, it returns and sets to indicate the error. ERRORS
The function will fail if: The prot argument specifies a protection that violates, or is different than (in the case where flag is present), the access permission the process has to the underlying memory object. prot is invalid, or addr is not a multiple of the page size as returned by The range specified by [addr, addr+len] (from, and including, addr to, but not including, addr+len) is invalid for the address space of a process, or the range specifies one or more unmapped pages. Addresses in the range [addr, addr+len] are invalid for the address space of a process, or specify one or more pages which are not mapped. The prot argument specifies over a mapping and there are insufficient memory resources to reserve for locking the private page. AUTHOR
was developed by HP, AT&T, and OSF. SEE ALSO
mmap(2), sysconf(2), <sys/mman.h>. STANDARDS CONFORMANCE
mprotect(2)
All times are GMT -4. The time now is 08:13 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy