Merge Static and dynamic parts in variable declaration

 
Thread Tools Search this Thread
Homework and Emergencies Emergency UNIX and Linux Support Merge Static and dynamic parts in variable declaration
# 1  
Old 07-13-2010
Merge Static and dynamic parts in variable declaration

Dear Unix experts

Moved from "Shell Programming and Scripting "
I want to define a variable which contains dynmic and static part, daynamic part is the first field.

Sample of data

Code:
dddd aaaa sssss 12345
ssss 2323 234234 4242
dddd 3223 34234 54353
ssss 24234 3434 42342
dddd rwrw 423423 werwer

Code:
Code:
nawk 'BEGIN {FS=" "}{ $1"_subs"=$1"_subs"+1}END {print dddd_subs}'

it should give me 3

but it gives me error "nawk: syntax error at source line 1
context is
Code:
BEGIN {FS=" "}{ >>> $1"_"subs= <<< $1"_"subs+1}
nawk: illegal statement at source line 1"

Can you please help ?
Many thanks in advance

I also tried

Code:
Code:
nawk 'BEGIN {FS=" ";diff[$2]=2}{ subs[$1]=+1}END {print subs[dddd], diff [rwrw]}

, Also error...

Can any one advise how to do it in any of the ways above

Last edited by radoulov; 07-13-2010 at 09:14 AM.. Reason: Additional code tags!
# 2  
Old 07-13-2010
Could you elaborate more on how the expected output of 3 should be calculated?

---------- Post updated at 03:11 PM ---------- Previous update was at 02:16 PM ----------

Thread reopened because in the Emergency forum.

Last edited by radoulov; 07-14-2010 at 02:23 PM..
# 3  
Old 07-16-2010
Try this:

Code:
nawk 'BEGIN {FS=" "} {subs[$1]++} END {for (i in subs) print i, subs[i]}'

Your last version uses a field variable, $2, in a BEGIN statement.
This is not valid because when the BEGIN statement executes no
data has been read, therefore there is no $2 field variable.

Last edited by Franklin52; 07-16-2010 at 03:47 PM.. Reason: Please use code tags, thank you
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

variable declaration

how to check 1. If variable is declared or not 2. If any value if assigned to variable or not. in UNIX shell script (6 Replies)
Discussion started by: ace_friends22
6 Replies

2. Programming

Shared, Static , Dynamic?

if I could compile the same source file as shared/static/dynamic what are the advantages/ disadv of each. PS:by dynamic i am asking about usage of "dlopen". How is it particularly diff from shared libs (2 Replies)
Discussion started by: dragonpoint
2 Replies

3. Shell Programming and Scripting

variable declaration

Hi Guys, What does this mean actually ? Can somebody give me any explanation ? x=${x:=1} Thanks (2 Replies)
Discussion started by: amit.behera
2 Replies

4. Shell Programming and Scripting

Merge Static and dynamic parts in variable declaration

Dear Unix experts I want to define a variable which contains dynmic and static part, daynamic part is the first field. Sample of data dddd aaaa sssss 12345 ssss 2323 234234 4242 dddd 3223 34234 54353 ssss 24234 3434 42342 dddd rwrw 423423 werwer nawk 'BEGIN {FS=" "}{... (4 Replies)
Discussion started by: yahyaaa
4 Replies

5. Shell Programming and Scripting

Unix script to segregate dynamic and static content of a web application

I need to deploy a JAVA application on two separate servers: 1. Web server (IBM HTTP Web Servers (IHS)) 2. Application Server (WebSphere Application Server WAS7.0) The static content will have to be deployed and handled on Web server. These would include GIFs, HTML, CSS, etc files.... (0 Replies)
Discussion started by: chani27
0 Replies

6. UNIX for Dummies Questions & Answers

Change static ip to dynamic ip

I had just install a solaris 10 server. I set the ip address to static during installation. I want to change it to dynamic but I don't know how. Expert here please help me! (5 Replies)
Discussion started by: jimmyysk
5 Replies

7. Shell Programming and Scripting

Help with variable declaration

I declared a variable x that gets the count(*) from a table. The table name is also defined as a variable. What's wrong with this statment : X=” select count(*) from ${table_name}“ then y = `${X}${table_name}' echo ${y} It throws an error saying count not found. Please... (1 Reply)
Discussion started by: dsravan
1 Replies

8. Solaris

Static & Dynamic IP on the same machine

Hi, I have a SUN SPARC with 2 NICs running Solaris 9. I want to configure the first NIC using static IP and the second NIC using dynamic IP (DHCP client). Anyone help me! Thanks in advanced. Tinh (2 Replies)
Discussion started by: tinhlx
2 Replies

9. Programming

differeEEK!nce between static and dynamic linking

hello, friends i would like to know what is the differnce between static library and dynamic library? How will u create them and what are there uses? (1 Reply)
Discussion started by: vijaya2006
1 Replies

10. Programming

Variable declaration

what does this mean when a variable is declared as register int i; Thanks. :confused: (2 Replies)
Discussion started by: laila63
2 Replies
Login or Register to Ask a Question