How to print based on the value from counters?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to print based on the value from counters?
# 1  
Old 07-11-2013
How to print based on the value from counters?

Hi,

I am writing a script which will get the input from a combinations of awk commands and using counters and loop I am generating a dynamic values and passing the output to a file using print -u3 options, now instead of redirecting the output to a file how can the output be created in the same script file.

Regards,
Shruthi
# 2  
Old 07-11-2013
What do you mean by 'created in the same script file'?
# 3  
Old 07-11-2013
Hi,

I am generating some delete and insert sqls dynamically and I am redirecting them to a file in \execute\sqls\ through print -u3, now instead of redirecting to a file can i print the insert's and deletes after the awk and counters command.

I am trying to avoid one step by eliminating the redirection to a new file and creating the same output in the executing script, is it possible?

Regards,
Shruthi
# 4  
Old 07-11-2013
Quite probably.

If it helps, you can combine statements with ( ) so you can pipe the output of multiple commands, in order, through one pipe.

Code:
( echo a ; cat b ; foo ) | command

If this doesn't clear it up you may actually need to post your code so we can see what you need specifically.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Print Based on File Name

Morning, I have an issue to print files based on file name my input file 20170516_WATERSONGS.txt 20170509_MULTIFLAG.txt every file consist of list of number, for ex 20170516_WATERSONGS.txt 7281370247390 7281370605338 7281370836600 7281370840039 7281372341119 7281372821958... (3 Replies)
Discussion started by: radius
3 Replies

2. UNIX for Beginners Questions & Answers

Print Based on File Name

Morning, I have an issue to print files based on file name my input file 20170516_WATERSONGS.txt 20170509_MULTIFLAG.txt every file consist of list of number, for ex 20170516_WATERSONGS.txt 7281370247390 7281370605338 7281370836600 7281370840039 7281372341119 7281372821958... (1 Reply)
Discussion started by: radius
1 Replies

3. Shell Programming and Scripting

Print rows based on separator

For below lines in a file. 68078971 dance routine (jess far back corner) 13902786 368079527 dance routine 13902786 368081191 dance routine (jess far back) 13902786 I am looking for output as below 68078971, "dance routine (jess far back corner)", 13902786... (4 Replies)
Discussion started by: Anjan1
4 Replies

4. Shell Programming and Scripting

Q: print a column based on the uniqe value of another

Hi there, If I have the following: and want to print the first column based on the uniqe value of the second column, so the output would be something like: how would I do that, using AWK and the piping technique? Thanks in advance (12 Replies)
Discussion started by: Abdulelah
12 Replies

5. Shell Programming and Scripting

Need to print last column based on the value of first 2 colums

Hi Everybody. I need an urgent help, it would be great if somebody will help me out in this regard. See below sample file 1525 805 26 2036 219644. 2598293. 1525 805 126 2327 1525 805 226 ... (6 Replies)
Discussion started by: syahmed
6 Replies

6. UNIX for Dummies Questions & Answers

Counters and arrays help needed!

I am trying to write a program in a script .sh I have a list of coordinates ie e1=123 n1=123 e2=456 n2=456 e3=789 n3=789 I have a counter starting at 1 for (( i=1; i<=2; i++)) i need coordinate=123,123 then on the second loop coordinate=456,456 etc... I tried doing: #e=0 n=0 <... (3 Replies)
Discussion started by: gazz1982
3 Replies

7. UNIX for Dummies Questions & Answers

Unix performance monitoring counters

Which performance counters you might to define as "The most important counters in checking unix performance" (3 Replies)
Discussion started by: gen4ik
3 Replies

8. Solaris

netstat counters

Is there a way to reset the netstat counters in solaris 8? Specifically, the error counters? (1 Reply)
Discussion started by: tjlst15
1 Replies
Login or Register to Ask a Question