Sponsored Content
Full Discussion: Sorting help with bash
Top Forums UNIX for Beginners Questions & Answers Sorting help with bash Post 303045023 by jdh239 on Wednesday 11th of March 2020 01:23:40 AM
Old 03-11-2020
Sorting help with bash

Using Mac OS 10.15.x Catalina

Consider the following CSV:

Code:
Name Error Count Severity Info
Server1 not found 1025 MAJOR some info here
Server4 some error 1 MAJOR some info here
Server 2 another error 587 MINOR more info
Server3 not found 15 MAJOR more info

I have some code to sort on the Severity, however, I can't get the numerical sort on the count to work correctly. I try to sort it numerically first, and then by severity, but the numerical portion doesn't seem to work. Here is what I have:

Code:
sort -k3,1 "$1";( grep -i "name" "$1"; grep "CRITICAL" "$1"; grep "MAJOR" "$1"; grep "HIGH" "$1"; grep "MEDIUM" "$1"; grep "MINOR" "$1"; grep "LOW" "$1" | sort ) > $OUT

RESULTS: It sorts on severity just fine, but doesn't sort on Count. Let me know if that doesn't make sense.

Desired outcome (notice the Count is from greatest to least within each sub-set of Severity)
Code:
Name Error Count Severity Info
Server1 not found 1025 MAJOR some info here
Server3 not found 15 MAJOR more info
Server4 some error 1 MAJOR some info here
Server 2 another error 587 MINOR more info

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

passing variable from bash to perl from bash script

Hi All, I need to pass a variable to perl script from bash script, where in perl i am using if condition. Here is the cmd what i am using in perl FROM_DATE="06/05/2008" TO_DATE="07/05/2008" "perl -ne ' print if ( $_ >="$FROM_DATE" && $_ <= "$TO_DATE" ) ' filename" filename has... (10 Replies)
Discussion started by: arsidh
10 Replies

2. Shell Programming and Scripting

bash and ksh: variable lost in loop in bash?

Hi, I use AIX (ksh) and Linux (bash) servers. I'm trying to do scripts to will run in both ksh and bash, and most of the time it works. But this time I don't get it in bash (I'm more familar in ksh). The goal of my script if to read a "config file" (like "ini" file), and make various report.... (2 Replies)
Discussion started by: estienne
2 Replies

3. Shell Programming and Scripting

Is there any better way for sorting in bash/awk

Hi, I have a file which is:- 1 6 4 8 2 3 2 1 9 3 2 1 3 3 5 6 3 1 4 9 7 8 2 3 I would like to sort from field $2 to field $6 for each of the line to:- 1 2 3 4 6 8 2 1 1 2 3 9 3 1 3 3 5 6 4 2 3 7 8 9 I came across this Arrays on example 26-6. But it is much complicated. I am... (7 Replies)
Discussion started by: ahjiefreak
7 Replies

4. Shell Programming and Scripting

how to make your bash script run on a machine with csh and bash

hi, i have a script that runs on bash and would like to run it on a machine that has csh and bash. the default setting on that machine is csh. i dont want to change my code to run it with a csh shell. is there any way i can run the script (written in bash) on this machine? in other words is there... (3 Replies)
Discussion started by: npatwardhan
3 Replies

5. Shell Programming and Scripting

Using arrays in bash using strings to bash built-in true

I have the following code and for some reason when I call the program using /home/tcdata/tatsh/trunk/hstmy/bin/bash/raytrac.bash --cmod=jcdint.cmod I get hasArgument = hasArgument = true Somehow the array element is returning even though I have not chosen the option. ... (41 Replies)
Discussion started by: kristinu
41 Replies

6. Shell Programming and Scripting

Recursive File Renaming & Natural Sorting (Bash)

NB! I have already started a thread on this subject on ComputerHope (with the thread title "Recursive File Renaming & Logical Sorting"). However, on ComputerHope they are perhaps more specialized in Windows Command Prompt, and not that much in shell scripts for Bash (I guess). I have a bulk... (1 Reply)
Discussion started by: JewzeyfGhewbelz
1 Replies

7. Shell Programming and Scripting

Bash to select text and apply it to a selected file in bash

In the bash below I am asking the user for a panel and reading that into bed. Then asking the user for a file and reading that into file1.Is the grep in bold the correct way to apply the selected panel to the file? I am getting a syntax error. Thank you :) ... (4 Replies)
Discussion started by: cmccabe
4 Replies

8. Shell Programming and Scripting

How to run several bash commands put in bash command line?

How to run several bash commands put in bash command line without needing and requiring a script file. Because I'm actually a windows guy and new here so for illustration is sort of : $ bash "echo ${PATH} & echo have a nice day!" will do output, for example:... (4 Replies)
Discussion started by: abdulbadii
4 Replies

9. Shell Programming and Scripting

Different behavior between bash shell and bash script for cmd

So I'm trying to pass certain json elements as env vars and use them later on in a script. Sample json: JSON='{ "Element1": "file-123456", "Element2": "Name, of, company written in, a very weird way", "Element3": "path/to/some/file.txt", }' (part of the) script: for s... (5 Replies)
Discussion started by: da1
5 Replies

10. UNIX for Beginners Questions & Answers

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed ? Is there any way to get the script names for the process command ? --- Post updated at 08:39 AM --- in KSH (Korn Shell), my command output shows the script names but when run in the Bash Shell... (3 Replies)
Discussion started by: i4ismail
3 Replies
Gtk2::version(3)					User Contributed Perl Documentation					  Gtk2::version(3)

NAME
Gtk2::version - Library Version Information SYNOPSIS
use Gtk2 '1.023'; # require at least version 1.023 of the bindings if ($Gtk2::VERSION >= 1.040 and Gtk2->CHECK_VERSION (2, 4, 0)) { # the GtkFileChooser, new in gtk+ 2.4.0 and first supported in # Gtk2-Perl at 1.040, is available } else { # GtkFileChooser is not available, fall back to GtkFileSelection } DESCRIPTION
Since the Gtk2 Perl module is a bridge to an external library with its own versions and API revisions, we have three different versions available for inspection. Which one you need to use at which time depends entirely on the situation. Gtk2 uses the same scheme as Glib and the underlying gtk+ C library; that is, the standard $Gtk2::VERSION for the version of the bindings, all-caps (MAJOR|MINOR|MICRO)_VERSION functions for the bound version, and lower-case (major|minor|micro)_version functions for the runtime version. See Glib::version and http://developer.gnome.org/doc/API/2.0/gtk/gtk-Feature-Test-Macros.html <http://developer.gnome.org/doc/API/2.0/gtk/gtk-Feature-Test-Macros.html> for more information. Note also that gtk_check_version() and GTK_CHECK_VERSION() have different semantics in C, and we have preserved those faithfully. METHODS
boolean = Gtk2->CHECK_VERSION ($required_major, $required_minor, $required_micro) o $required_major (integer) o $required_minor (integer) o $required_micro (integer) Provides a mechanism for checking the version information that Gtk2 was compiled against. Essentially equvilent to the macro GTK_CHECK_VERSION. In most cases this function should be used rather than check_version (). (MAJOR, MINOR, MICRO) = Gtk2->GET_VERSION_INFO Shorthand to fetch as a list the gtk+ version for which Gtk2 was compiled. See "Gtk2::MAJOR_VERSION", etc. integer = Gtk2::MAJOR_VERSION The major version of the gtk+ library against which Gtk2 was compiled. Equivalent to gtk+'s GTK_MAJOR_VERSION. integer = Gtk2::MICRO_VERSION The micro version of the gtk+ library against which Gtk2 was compiled. Equivalent to gtk+'s GTK_MICRO_VERSION. integer = Gtk2::MINOR_VERSION The minor version of the gtk+ library against which Gtk2 was compiled. Equivalent to gtk+'s GTK_MINOR_VERSION. string = Gtk2->check_version ($required_major, $required_minor, $required_micro) o $required_major (integer) o $required_minor (integer) o $required_micro (integer) Returns undef if the version of gtk+ currently in use is compatible with the given version, otherwise returns a string describing the mismatch. Note that this is not the same logic as "Gtk2::CHECK_VERSION". This check is not terribly reliable, and should not be used to test for availability of widgets or functions in the Gtk2 module --- use "Gtk2::CHECK_VERSION" for that. See Glib::version for a more detailed description of when you'd want to do a runtime-version test. integer = Gtk2::major_version The major version of the gtk+ library current in use at runtime. Equivalent to gtk+'s global variable gtk_major_version. integer = Gtk2::micro_version The micro version of the gtk+ library current in use at runtime. Equivalent to gtk+'s global variable gtk_micro_version. integer = Gtk2::minor_version The minor version of the gtk+ library current in use at runtime. Equivalent to gtk+'s global variable gtk_minor_version. (major, minor, micro) = Gtk2->get_version_info Shorthand to fetch as a list the gtk+ version against which Gtk2 is linked. See "Gtk2::major_version", etc. SEE ALSO
Gtk2, Glib::version COPYRIGHT
Copyright (C) 2003-2008 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.12.1 2010-07-05 Gtk2::version(3)
All times are GMT -4. The time now is 02:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy