Sponsored Content
Full Discussion: Stuck with awk !!!
Top Forums UNIX for Advanced & Expert Users Stuck with awk !!! Post 302853473 by zsycho on Saturday 14th of September 2013 01:23:09 PM
Old 09-14-2013
hmm, I am aware of that but since I am new to awk, its getting difficult for me to generate the required output.

I need to know what needs to be changed in the following command

Code:
 awk '{ s += $1 } END { print "sum is", s "\n"} {printf "%f", $1/s*100} {print $0}'

so that I can get the output as

Code:
Bank1.sss
91.30     63  Result code [0] 
2.89      2  Result code [106] 
5.79      4  Result code [108] 
 Bank2.sss
97.92    474  Result code [0] 
0.20      1  Result code [103] 
0.82      4  Result code [106] 
0.41      2  Result code [187] 
0.20      1  Result code [580]

The problem with the above awk command is :

At first, the value of s is 63. so it creates percentage as 63/63*100 = 100 %
then, the value of s is 63+2 i.e 65. so it creates percentage as 2/65*100 = 3.07 % and so on... I hope you got the point.


How can I change the command such that awk will create percentage only for the entries between ".sss" , calculate the sum and then percentage. Then move to the next loop i.e the entries between next set ".sss".

I am getting the proper sum for every set but not correct percentage.

Last edited by zsycho; 09-14-2013 at 02:36 PM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

stuck....!

I have been busy reading away on devices and filesystems and I am stuck on a particular subject matter.. I'm not understanding the concept behind mknod mkfifo makedev or related commands.. can anyone shed some light on the subject.! any feedback welcome! moxxx68 (0 Replies)
Discussion started by: moxxx68
0 Replies

2. Shell Programming and Scripting

Got stuck so plz help

I'm having problem writing a shell script using bash that takes a file as an argument. The script should be able to determine what permissions the owner, group and everybody has for the file passed in. could anyone plz help me out. (3 Replies)
Discussion started by: boris
3 Replies

3. UNIX for Dummies Questions & Answers

stuck and confused

#!/bin/bash echo $1 | cat - $2 >> /tmp/$$ && mv /tmp/$$ $2 im trying to get the first argument to go in the middle of the second argument which is a file, anyone any ideas. i have only managed to get it to go on the end or the front. been fiddling about with wc -l, i get the number of lines... (5 Replies)
Discussion started by: iago
5 Replies

4. Programming

I'm stuck :(

Suppose that I have some data: 12,30 12,45 2,3 7,8 3,9 30, 8 45,54 56,65 Where (a,b) indicates that a is connected to b. I want to get all connected nodes to one point. For instance, the output of the above example should be something like: Group 1 2,3 3,9 Group 2 12,30 12,45... (4 Replies)
Discussion started by: Legend986
4 Replies

5. AIX

really stuck- need to get a variable within a variable- AWK

Hi all, I have been struggling with this all day, and it is key to a conversion database I have to write. The data converts the information out of an array using AWK, and basically all I have to do is figure out how to get the value of a variable inside a variable. Right now at its... (11 Replies)
Discussion started by: jeffpas
11 Replies

6. Shell Programming and Scripting

help! im stuck..

I want to search for the line with the group name and add the user into the group. The file format is the same as /etc/group The code i wrote is egrep "^$newGID" $group >/dev/null FS=":" oldData=awk -F: '{print $3}' newData= "$oldData,$newUser" sed -n $4/$newData $group but a friend... (1 Reply)
Discussion started by: cherrywinter
1 Replies

7. Shell Programming and Scripting

I am stuck in my script

Hi All I have script that find 777 dir with specific extension like .php .Now after finding all 777 directory i will place in httpd.conf using a directory directive ,Now i was not do that,if directory entry exitst in httpd.conf then script ignor it dont show me at stdout else if it dont find... (2 Replies)
Discussion started by: aliahsan81
2 Replies

8. Shell Programming and Scripting

awk getting stuck after BEGIN

I am beginner in awk awk 'BEGIN{for(i=1;(getline<"opnoise")>0;i++) arr=$1}{print arr}' In the above script, opnoise is a file, I am reading it into an array and then printing the value corresponding to index 20. Well this is not my real objective, but I have posted this example to describe... (1 Reply)
Discussion started by: akshaykr2
1 Replies

9. Linux

Stuck in pthread_cond_signal()

I am developing a multi-threaded library that helps the transformation of messages between threads in different processes using shared memory. I am using the pthreads condition facility in order to synchronize access to the shared memory slots through which the messages are passed. My test... (2 Replies)
Discussion started by: dhzdh
2 Replies

10. Homework & Coursework Questions

stuck on assignment

I was given this to do, Write a Shell script to automatically check that a specified user is logged in to the computer. The program should allow the person running the script to specify the name of the user to be checked, the frequency in seconds at which the script should check. If a... (1 Reply)
Discussion started by: operator
1 Replies
TAP::Parser::Result(3pm)				 Perl Programmers Reference Guide				  TAP::Parser::Result(3pm)

NAME
TAP::Parser::Result - Base class for TAP::Parser output objects VERSION
Version 3.26 SYNOPSIS
# abstract class - not meant to be used directly # see TAP::Parser::ResultFactory for preferred usage # directly: use TAP::Parser::Result; my $token = {...}; my $result = TAP::Parser::Result->new( $token ); DESCRIPTION This is a simple base class used by TAP::Parser to store objects that represent the current bit of test output data from TAP (usually a single line). Unless you're subclassing, you probably won't need to use this module directly. METHODS "new" # see TAP::Parser::ResultFactory for preferred usage # to use directly: my $result = TAP::Parser::Result->new($token); Returns an instance the appropriate class for the test token passed in. Boolean methods The following methods all return a boolean value and are to be overridden in the appropriate subclass. o "is_plan" Indicates whether or not this is the test plan line. 1..3 o "is_pragma" Indicates whether or not this is a pragma line. pragma +strict o "is_test" Indicates whether or not this is a test line. ok 1 Is OK! o "is_comment" Indicates whether or not this is a comment. # this is a comment o "is_bailout" Indicates whether or not this is bailout line. Bail out! We're out of dilithium crystals. o "is_version" Indicates whether or not this is a TAP version line. TAP version 4 o "is_unknown" Indicates whether or not the current line could be parsed. ... this line is junk ... o "is_yaml" Indicates whether or not this is a YAML chunk. "raw" print $result->raw; Returns the original line of text which was parsed. "type" my $type = $result->type; Returns the "type" of a token, such as "comment" or "test". "as_string" print $result->as_string; Prints a string representation of the token. This might not be the exact output, however. Tests will have test numbers added if not present, TODO and SKIP directives will be capitalized and, in general, things will be cleaned up. If you need the original text for the token, see the "raw" method. "is_ok" if ( $result->is_ok ) { ... } Reports whether or not a given result has passed. Anything which is not a test result returns true. This is merely provided as a convenient shortcut. "passed" Deprecated. Please use "is_ok" instead. "has_directive" if ( $result->has_directive ) { ... } Indicates whether or not the given result has a TODO or SKIP directive. "has_todo" if ( $result->has_todo ) { ... } Indicates whether or not the given result has a TODO directive. "has_skip" if ( $result->has_skip ) { ... } Indicates whether or not the given result has a SKIP directive. "set_directive" Set the directive associated with this token. Used internally to fake TODO tests. SUBCLASSING
Please see "SUBCLASSING" in TAP::Parser for a subclassing overview. Remember: if you want your subclass to be automatically used by the parser, you'll have to register it with "register_type" in TAP::Parser::ResultFactory. If you're creating a completely new result type, you'll probably need to subclass TAP::Parser::Grammar too, or else it'll never get used. Example package MyResult; use strict; use vars '@ISA'; @ISA = 'TAP::Parser::Result'; # register with the factory: TAP::Parser::ResultFactory->register_type( 'my_type' => __PACKAGE__ ); sub as_string { 'My results all look the same' } SEE ALSO
TAP::Object, TAP::Parser, TAP::Parser::ResultFactory, TAP::Parser::Result::Bailout, TAP::Parser::Result::Comment, TAP::Parser::Result::Plan, TAP::Parser::Result::Pragma, TAP::Parser::Result::Test, TAP::Parser::Result::Unknown, TAP::Parser::Result::Version, TAP::Parser::Result::YAML, perl v5.18.2 2014-01-06 TAP::Parser::Result(3pm)
All times are GMT -4. The time now is 07:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy