Sponsored Content
Full Discussion: Improving code
Top Forums Shell Programming and Scripting Improving code Post 302991069 by Corona688 on Monday 6th of February 2017 11:04:03 AM
Old 02-06-2017
I'll cut to the chase and be a bit more generous -- you are reprocessing your input files over, and over, and over, and over, and over, and over, and over, when you could have done so just once or twice.

Your code is too big a mess to replace wholesale, especially since we know nothing about your input, but 'filter by conditions' is particularly egregious. You are allowed to put more than one statement in an awk program! You could have done 5 times as much work at once. Here is pseudocode.

Code:
read vpff vpds4a vpds4b vpds4 vpdsss <<EOF
$( awk '
        awk-range1 { count1++ }
        awk-range2 { count2++ }
        awk-range3 { count3++ }
        awk-range4 { count4++ }
        awk-range5 { count5++ }
        END { print count1+0, count2+0, count3+0, count4+0, count5+0; }' tmp4 )
EOF

The idea is to have awk print a line like "5 7 3 9 12" which gets dumped into read and split among its variables.
This User Gave Thanks to Corona688 For This Post:
 

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

improving my script

Hi; I want to access our customer database to retreive all clients that have as language index 2 or 3 and take their client number. My input is a file containing all client numbers. i access the data base using a function call "scpshow". The total number of clients i want to scan is 400 000... (6 Replies)
Discussion started by: bcheaib
6 Replies

2. UNIX for Dummies Questions & Answers

Improving Unix Skills

Kindly any advice to improve my unix skills as electronic books i can download or valuable sites as this one etc... (3 Replies)
Discussion started by: sak900354
3 Replies

3. Shell Programming and Scripting

Improving this validate function

Hi guys, I use this function which was provided to me by someone at this site. It works perfectly for validating a users input option against allowed options.. example: validateInput "1" "1 3 4 5" would return 0 (success) function validateInput { input=$1 allowedInput=$2 for... (4 Replies)
Discussion started by: pyscho
4 Replies

4. Shell Programming and Scripting

Improving code by using associative arrays

I have the following code, and I am changing it to #!/bin/bash hasArgumentCModInfile=0 hasArgumentSrcsInfile=0 hasArgumentRcvsInfile=0 OLDIFS="$IFS" IFS="|=" # IFS controls splitting. Split on "|" and "=", not whitespace. set -- $* # Set the positional... (3 Replies)
Discussion started by: kristinu
3 Replies

5. Shell Programming and Scripting

Basic help improving for in loop

I'm obviously very new to this. I'm trying to write a simple for loop that will read the directory names in /Users and then copy a file into the same subdir in each user directory. I have this, and it works but it isn't great. #!/bin/bash HOMEDIRS=/Users/* for dirs in $HOMEDIRS; do if ];... (5 Replies)
Discussion started by: Heath_T
5 Replies

6. Shell Programming and Scripting

Need help improving my script.

Thank you for taking the time to look at this and provide input. To start, I am not a linux/unix expert but I muddle through the best I can. I am also in no way shape or form a programmer. Please keep that in mind as you read this script. This script is designed to find all files in a given... (8 Replies)
Discussion started by: garlandxj11
8 Replies
ZIMPL(1)							   User Manuals 							  ZIMPL(1)

NAME
zimpl - Zuse Institute Mathematical Programming Language SYNOPSIS
zimpl [ -b ] [ -D name=value ] [ -f ] [ -F filter ] [ -h ] [ -m ] [ -l length [ -n cm|cn|cf ] [ -o outfile ] [ -O ] [ -P filter [ -r ] [ -t lp|mps|hum|rlp|pip ] [ -s seed ] [ -v 0-5 ] [ -V ] file ... DESCRIPTION
Zimpl is a little language to translate the mathematical model of a problem into a linear or (mixed-)integer mathematical program expressed in LPF or MPS file format which can be read by a LP or MIP solver. None of the options is necessary. All input files in zpl format that are given are concatenated and processed as if they are one big file. This makes is possible to combine different parts of a model on the command line. In this case the first filename given will be used as basename for the output files in absence of an -o option. The -t option is to select the output format. mps can be read by every solver. lpf is an CPLEX format, but can also read by several solvers. BE aware that for example Range-rows can not be expressed in lpf . If you want to inspected the output yourself, hum format is a variant of lpf with no name mangeling whatever, but unfortunately this violates several format restrictions, so no solver will read this in. If rlp is specified the output is in lpf format, but rows and columns are randomly permuted. OPTIONS
-b Enable bison(1) debugging output. -D name=value Sets the parameter name to the specified value. This is equivalent with having this line in the Zimpl program: param name:=val . -f Enable flex(1) debugging output. -F filter The output is piped through a filter. A %s in the string is replaced by the output filename. For example: -F "gzip -c >%s.gz" would compress all the output files. -h Show program help. -l length Sets the maximum length for variable names in LPF output files. -m Write a CPLEX .mst Mip STart file. -n cm|cn|cf Select the format for the generation of constraint names. Can be either cm which will number them 1 ... n with a `c' in front. cn will use the name supplied in the subto statement and number them 1 ... n within the statement. cf will use the name given with the subto, then a 1 .. n number like in cm and then append all the local variables from the forall statements. -o outfile Sets the base-name for the output files. Default is the name of the input file without extension. -O Optimize the generated LP by doing some presolve analysis (experimental). -P filter The input is piped through a filter. A %s in the string is replaced by the input filename. For example: -F "cpp -DWITH_C1 %s" would pass the input file through the C-preprocessor. -r Write a CPLEX .ord branching order file. -s seed Set the random number generator seed. -t lp|mps|hum|rlp|pip Selects the output format. Can be either lp which is default, or mps , or hum , which is (only) human readable, or rlp , which is randomly permuted, or pip , which means polynimial IP. -v 0-5 Set the verbosity level. 0 is quiet, 1 is default, 2 is verbose, 3 is chatter, and 5 is debug. -V Prints the version number. DIAGNOSTICS
The following diagnostics may be issued on stderr: 101 Bad filename The name given with the -o option is either missing, a directory name, or starts with a dot. 175 Illegal syntax for command line define -- ignored The parameter of a -D option was either not of the form name=value or the name was not a legal identifier. There are about a hundred other possible error messages, but these are either about the contend of the input file, or system messages. BUGS
Please report any bug to the author. AUTHOR
Thorsten Koch <koch@zib.de> WEBSITE
The lastest version of Zimpl is always available at <http://zimpl.zib.de>. SEE ALSO
The Zimpl User Guide at <http://zimpl.zib.de/download/zimpl.pdf>. Linux 30 September 2010 ZIMPL(1)
All times are GMT -4. The time now is 07:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy