Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How to print based on the value from counters? Post 302831707 by Corona688 on Thursday 11th of July 2013 02:18:58 PM
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.
 

8 More Discussions You Might Find Interesting

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

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

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

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

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

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

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

8. 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
PAPI_accum_counters(3)						       PAPI						    PAPI_accum_counters(3)

NAME
PAPI_accum_counters - Accumulate and reset counters. SYNOPSIS
Detailed Description @par C Interface: int PAPI_accum_counters( long long *values, int array_len ); Parameters: *values an array to hold the counter values of the counting events arry_len the number of items in the *events array Precondition: These calls assume an initialized PAPI library and a properly added event set. Postcondition: The counters are reset and left running after the call. Return values: PAPI_EINVAL One or more of the arguments is invalid. PAPI_ESYS A system or C library call failed inside PAPI, see the errno variable. PAPI_accum_counters() adds the event counters into the array *values. do_100events(); if ( PAPI_read_counters( values, num_hwcntrs ) != PAPI_OK ) handlw_error(1); // values[0] now equals 100 do_100events(); if ( PAPI_accum_counters( values, num_hwcntrs ) != PAPI_OK ) handle_error(1); // values[0] now equals 200 values[0] = -100; do_100events(); if ( PAPI_accum_counters(values, num_hwcntrs ) != PAPI_OK ) handle_error(); // values[0] now equals 0 * See Also: PAPI_set_opt() PAPI_start_counters() Author Generated automatically by Doxygen for PAPI from the source code. Version 5.2.0.0 Tue Jun 17 2014 PAPI_accum_counters(3)
All times are GMT -4. The time now is 02:42 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy