Merge Static and dynamic parts in variable declaration


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Merge Static and dynamic parts in variable declaration
# 1  
Old 07-12-2010
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

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
BEGIN {FS=";"}{ >>> $1"_"subs= <<< $1"_"subs+1}
nawk: illegal statement at source line 1"

Can you please help ?
Many thanks in advance

---------- Post updated at 07:03 AM ---------- Previous update was at 04:47 AM ----------

I also tried

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

but the results were always 1!!!!
# 2  
Old 07-12-2010
Code:
 
it should give me 3

how ?

can you please post sample input and output expected ?
# 3  
Old 07-12-2010
i write the command in this way
awk '{subs[$1]+=1}END{print subs["dddd"]}'
input context is what you post
it gives 3

$1"_subs"?
i just saw this kind of variable in "MakeFile",maybe shell doesn't support
# 4  
Old 07-12-2010
its like assigning variable part in variables.

Eample in the thread above assign variable ($1) with fied part

line 1 ; $1=dddd, so first variable created is dddd_subs ?

and what is done wrong in first example ?

Last edited by yahyaaa; 07-12-2010 at 07:34 PM..
# 5  
Old 07-13-2010
Not sure , but it seems , my understanding capabilities are poor Smilie

Ok ,

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

and the output you want is , how many no of times the lines with the "dddd" are occurred in the input ( in the first field) ?. is it right?
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. Emergency UNIX and Linux Support

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 dddd aaaa sssss 12345 ssss 2323 234234 4242 dddd 3223 34234 54353 ssss 24234 3434 42342 dddd rwrw 423423... (2 Replies)
Discussion started by: yahyaaa
2 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