Sponsored Content
Top Forums UNIX for Advanced & Expert Users Executing if dynamic conditions in awk Post 303044002 by nezabudka on Wednesday 12th of February 2020 10:37:28 AM
Old 02-12-2020
Hi
the question under item 2. is not entirely clear
can you show the code how you are mapping and storing in the variable?
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

About awk conditions

Hello, Can you explain why in the first 2 commands the awk does not print anything? Is it looking of a specific format ? Thanks. $ echo 12a3 | awk '($1>=2) {print $1}' # prints nothing $ echo 123a | awk '($1>=2) {print $1}' # prints nothing $ echo a123 | awk '($1>=2) {print $1}' a123... (1 Reply)
Discussion started by: majormark
1 Replies

2. UNIX for Advanced & Expert Users

Dynamic Downloading and executing of ELF files

Dear Group, I want to prepare an ELF file which can be downloaded dynamically to any address in the moemory and executes as a new task/thread/process. 1) for this what are all the compileation, linker options while building the ELF file? 2) which parts of ELF file has to modified while... (1 Reply)
Discussion started by: ravinder.are
1 Replies

3. Shell Programming and Scripting

specifying multiple conditions in AWK

how can i specify more than 1 consition in the following AWK statament?? i.e. if $2 is ABCD and $3 is MNOP and $4 is KLPM similarly for OR #!/bin/ksh awk -F '' ' $2 == "ABCD" { print $2, $3;}' file.xml (2 Replies)
Discussion started by: skyineyes
2 Replies

4. Shell Programming and Scripting

awk with two conditions

Hi Everyone, # cat 1 1;2;3;4;5;6 1;2;3;4;5; # awk -F ";" '$5 == "5"' 1 1;2;3;4;5;6 1;2;3;4;5; but the output is should be just "1;2;3;4;5;6" means 1st condition: $5 is 5; 2nd condition: $6 is not empty, please advice. Thanks (2 Replies)
Discussion started by: jimmy_y
2 Replies

5. Shell Programming and Scripting

Conditions in awk

Hi there, here is my command ssh host.local "/path/to/my/perscript/hostconfig.pl -s $HOST -d |awk '{if (\$4 > 120)print \"My error message\";exit}{s=0; for (i=1; i<=NF; i++) s++; if(s == 13) print \$3}'" The problem is if conditional 1 is met (i.e $4 > 120), i don't see "My error message", the... (5 Replies)
Discussion started by: urello
5 Replies

6. Shell Programming and Scripting

awk with conditions

Hi All, I have a file with below contents. "en2"/10.185.81.0:cluster_interconnect,"en5"/10.185.81.0:cluster_interconnect,"en6"/169.181.146.0:public I want to take the interface name from the file and convert it as ipaddress using ifconfig command get the output like below en6 ->... (2 Replies)
Discussion started by: kamauv234
2 Replies

7. Shell Programming and Scripting

awk three conditions

I'm having a problem pulling UID's from data. The data outputs a user's UID in one of three ways: 1. Error User user_name already assigned with <UID> 2. Success <UID> reserved for user_name 3. <a load of crap because there was a db failure yet somehow the UID is still in there> I typically... (5 Replies)
Discussion started by: MaindotC
5 Replies

8. Shell Programming and Scripting

Shell script executing both the conditions.

I have written this script. This is used for creating a backup folder. #!/bin/sh #set -x . /home/.profile usage="Usage is $0" usage="$usage " # Use the getopt utility to set up the command line flags. set -- `/usr/bin/getopt b: $*` # Process individual command line arguments while ;... (1 Reply)
Discussion started by: arijitsaha
1 Replies

9. Shell Programming and Scripting

If conditions in awk

Hello Friends, I need to find some CDRs in production servers whose 1st field value and 2nd field value = 1 and 11th looks like 45.123... where there are more than 3 digits after comma.so i wrote a one liner, something like below but does not work, however when i used first and second conditions... (8 Replies)
Discussion started by: EAGL€
8 Replies

10. Shell Programming and Scripting

awk problems - awk ignores conditions

awk 'BEGIN{ if('"$CATE"'<'"${WARN}"') printf ("%s", "'"`Kfunc "" ; break`"'") else if (('"${CATE}"'>='"${WARN}"') && ('"${CATE}"'<'"${CRIT}"')) printf ("%s", "'"`Wfunc ""; break`"'") else if ('"${CATE}"'>='"${CRIT}"') printf... (6 Replies)
Discussion started by: SkySmart
6 Replies
QListViewItemIterator(3qt)												QListViewItemIterator(3qt)

NAME
QListViewItemIterator - Iterator for collections of QListViewItems SYNOPSIS
#include <qlistview.h> Public Members QListViewItemIterator () QListViewItemIterator ( QListViewItem * item ) QListViewItemIterator ( const QListViewItemIterator & it ) QListViewItemIterator ( QListView * lv ) QListViewItemIterator & operator= ( const QListViewItemIterator & it ) ~QListViewItemIterator () QListViewItemIterator & operator++ () const QListViewItemIterator operator++ ( int ) QListViewItemIterator & operator+= ( int j ) QListViewItemIterator & operator-- () const QListViewItemIterator operator-- ( int ) QListViewItemIterator & operator-= ( int j ) QListViewItem * operator* () QListViewItem * current () const DESCRIPTION
The QListViewItemIterator class provides an iterator for collections of QListViewItems. Construct an instance of a QListViewItemIterator, with either a QListView* or a QListViewItem* as argument, to operate on the tree of QListViewItems. A QListViewItemIterator iterates over all the items in a list view. This means that it always makes the first child of the current item the new current item. If there is no child, the next sibling becomes the new current item; and if there is no next sibling, the next sibling of the parent becomes current. The following example creates a list of all the items that have been selected by the user, storing pointers to the items in a QPtrList: QPtrList<QListViewItem> lst; QListViewItemIterator it( myListView ); while ( it.current() ) { if ( it.current()->isSelected() ) lst.append( it.current() ); ++it; } A QListViewItemIterator provides a convenient and easy way to traverse a hierarchical QListView. Multiple QListViewItemIterators can operate on the tree of QListViewItems. A QListView knows about all iterators operating on its QListViewItems. So when a QListViewItem gets removed all iterators that point to this item are updated and point to the following item if possible, otherwise to a valid item before the current one or to 0. See also QListView, QListViewItem, and Advanced Widgets. MEMBER FUNCTION DOCUMENTATION
QListViewItemIterator::QListViewItemIterator () Constructs an empty iterator. QListViewItemIterator::QListViewItemIterator ( QListViewItem * item ) Constructs an iterator for the QListView that contains the item. The current iterator item is set to point to the item. QListViewItemIterator::QListViewItemIterator ( const QListViewItemIterator & it ) Constructs an iterator for the same QListView as it. The current iterator item is set to point on the current item of it. QListViewItemIterator::QListViewItemIterator ( QListView * lv ) Constructs an iterator for the QListView lv. The current iterator item is set to point on the first child (QListViewItem) of lv. QListViewItemIterator::~QListViewItemIterator () Destroys the iterator. QListViewItem * QListViewItemIterator::current () const Returns iterator's current item. Examples: QListViewItem * QListViewItemIterator::operator* () Dereference operator. Returns a reference to the current item. The same as current(). QListViewItemIterator &; QListViewItemIterator::operator++ () Prefix ++. Makes the next item the new current item and returns it. Returns 0 if the current item is the last item or the QListView is 0. const QListViewItemIterator QListViewItemIterator::operator++ ( int ) This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Postfix ++. Makes the next item the new current item and returns the item that was the current item. QListViewItemIterator &; QListViewItemIterator::operator+= ( int j ) Sets the current item to the item j positions after the current item. If that item is beyond the last item, the current item is set to 0. Returns the current item. QListViewItemIterator &; QListViewItemIterator::operator-- () Prefix --. Makes the previous item the new current item and returns it. Returns 0 if the current item is the first item or the QListView is 0. const QListViewItemIterator QListViewItemIterator::operator-- ( int ) This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Postfix --. Makes the previous item the new current item and returns the item that was the current item. QListViewItemIterator &; QListViewItemIterator::operator-= ( int j ) Sets the current item to the item j positions before the current item. If that item is before the first item, the current item is set to 0. Returns the current item. QListViewItemIterator &; QListViewItemIterator::operator= ( const QListViewItemIterator & it ) Assignment. Makes a copy of it and returns a reference to its iterator. SEE ALSO
http://doc.trolltech.com/qlistviewitemiterator.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qlistviewitemiterator.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QListViewItemIterator(3qt)
All times are GMT -4. The time now is 11:24 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy