Counting the differences based on a specific rule


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Counting the differences based on a specific rule
# 8  
Old 09-08-2008
Welp, my original proposal was to just collect the @differences, then at the end sort it and loop over it.

Code:
my %limits = (100 => "< 100",
  200 => "100 - 200",
  500 => "201 - 500",
  750 => "501 - 750",
  1000 => "751 - 1000",
  1_000_000_000 => "> 1001");
my @l = sort keys %limits;
my $total = 0;
print "\nDistribution:\n";
for my $d (sort @differences) {
  if ($d < $l[0]) {
    $total++;
    next;
  }
  print $limits{$l[0]}, "\t-\t", $total, "\n";
  shift @l;
}
print $limits{$l[0]}, "\t-\t", $total, "\n";

(Not tested.)
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Linux/Shell script - How to compare 2 arrays based on patterns and get the differences

I have FILE 1 (This file has all master columns/headers) A|B|C|D|E|F|G|H|STATUS FILE 2 A|C|F|I|OFF_STATUS 3|4|5|4|Y 6|7|8|5|Y Below command give me all headers of FILE 2 into array2.txt file paste <(head -1 FILE2.txt | tr '|' '\n')>array2.txt So I would like to compare... (2 Replies)
Discussion started by: jmadhams
2 Replies

2. UNIX for Dummies Questions & Answers

Extracting combined differences based on a single column

Dear All, I have two sets of files. File 1 can be any number between 1 and 20 followed by a frequency of that number in a give documents... the lines in the file will be dependent to the analysed document. e.g. file1 1,5 4,1 then I have file two which is basicall same numbers but with... (2 Replies)
Discussion started by: A-V
2 Replies

3. IP Networking

Facing issue in ip6table rule for port based routing management

Hi, Please help me on issue described below, I have 4 machine setup, M1 -> M2 -> M3 | M4. And A laptop that can be reachable through both M3 and M4. M2 has 2 NIC conected to M3 and M4. Now I want to divide the flow coming from M1 for laptop. At M2, I have done following,... (1 Reply)
Discussion started by: rahulbhansali24
1 Replies

4. Shell Programming and Scripting

Counting non-specific occurrences within a file.

I'm pretty new to scripting and didn't see an example of this issue yet. I am trying to count and print the total number of times each value is found within a file. Here is a short example of my starting file. value 3 value 3 value 3 value 3 value 4 value 6 value 6 value 6 value 6... (3 Replies)
Discussion started by: funkynmr
3 Replies

5. Shell Programming and Scripting

Regex based Rule engine.

Hi, Greetings. We need to make a regexp based rule engine. The rules would be applied to any file specified and the data not matching should be logged. Would awk be the right scripting language. Regards, Dikesh Shah. (2 Replies)
Discussion started by: dikesm
2 Replies

6. Shell Programming and Scripting

Counting specific words from the log

Hi, I need a shell script which can provide details from error logs like this Aug 23 21:19:41 red mountd: authenticated mount request from bl0110.bang.m pc.local:651 for /disk1/jobs (/disk1) Aug 23 08:49:52 red dhcpd: DHCPDISCOVER from 00:25:90:2b:cd:7c via eth0: unknown client Aug 24... (2 Replies)
Discussion started by: ratheeshp
2 Replies
Login or Register to Ask a Question
CVSMGDIFF(1)							  Utility Scripts						      CVSMGDIFF(1)

NAME
cvsmgdiff - uses mgdiff to display differences between any two cvs revisions. SYNOPSIS
cvsmgdiff [-v|-h|-g gui|-r rev1 [-r rev2]] file ... DESCRIPTION
This manual page documents briefly the cvsmgdiff program. This manual page was written for the Debian GNU/Linux distribution (but may be used by others), because the original program does not have a manual page. This script lets you recursively diff the CVS directories you have checked out. To use, just pass in an optional revision levels and an optional file directory name. This script then will show you the differences you're interested in. OPTIONS
-v Print version information successfully -h Print help information -g gui Use the program gui as the user interface (default: /usr/bin/mgdiff) -r revision Specify the CVS revision to view. If just one -r option is given, view differences between that revision and the current file in the CVS working directory. If two -r options are given, compare those two revisions with each other. AUTHOR
cvsmgdiff appears to have been written by Paul Serice. This manual page was written by Ian Zimmerman <itz@speakeasy.org> for the Debian GNU/Linux project, but may be used by others. It was written with the assistance of pod2man(1). 3rd Berkeley Distribution Utility Scripts CVSMGDIFF(1)