Sponsored Content
Full Discussion: Egrep help needed?
Top Forums UNIX for Advanced & Expert Users Egrep help needed? Post 302748457 by Yoda on Wednesday 26th of December 2012 01:49:00 AM
Old 12-26-2012
Don, I understood. That repetition operator {3} was a mistake. Thank you for pointing that out.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

egrep -f

Hi, i am using egrep -f. The file with the expressions is very big and if i make the file a lot smaller, it works fine. Only if i use the original file, witch has about 20.000 lines it doesn't seem to work. Is the file to big, or do i need more patience?? my command is: egrep -f... (2 Replies)
Discussion started by: tine
2 Replies

2. UNIX for Dummies Questions & Answers

Egrep cheat sheet anywhere? Looking for meaning of egrep -c

Hi I've been searching google and have not found what egrep -c means. Does anyone know where I can get a cheat sheet or what that -c means? thanks, Linda (2 Replies)
Discussion started by: leelm
2 Replies

3. Shell Programming and Scripting

egrep

Hi, I don't understand what is the correct way of writing: egrep -l '{$min,$max} $pattern' $filename I tryed to search on google how to wtrite {$min, $max}, but I don't have success (7 Replies)
Discussion started by: DNAx86
7 Replies

4. Shell Programming and Scripting

egrep help

Hi there, Im having some issues using egrep, I have a text file containing server logs: the user imputs 2 arguments, which are error checked and made into $searchMonth $searchYear respectivley. I then do the grep command: egrep /$searchMonth/ $file | egrep /$searchYear: | wc -l ... (1 Reply)
Discussion started by: Darklight
1 Replies

5. UNIX for Dummies Questions & Answers

search ")" with egrep - egrep: syntax error

Hi Guys, we have a shell script which basically query the Database which retrieves huge data and use the data with "egrep" . Now there is some data which contains characters like "abc)" and the same is used like below : "egrep (.+\|GDPRAB16\|GDPR/11702 96 abc)\|$ temp.txt" now while... (7 Replies)
Discussion started by: sagarjani
7 Replies

6. UNIX for Dummies Questions & Answers

help on egrep

HI, I have two files filea, fileeb filea z283110z67 xx65686377 xx654681zz xx652836xx xx653881zz xx65480z11 xx654z5466 xx65510000 xx65670000 xx656z0000 xx656z1822 fileb (3 Replies)
Discussion started by: krao
3 Replies

7. Shell Programming and Scripting

Egrep help needed

What does the below statement mean? 1. egrep -m 1 -cif "ignore_list" "file" 2. egrep -vif "ignore_list" "file" Thanks in Advance Robin. (1 Reply)
Discussion started by: robinbannis
1 Replies

8. Shell Programming and Scripting

Using egrep.

I have a text file which has the content starting with "....." Not able to filter out lines staring with "....." Is there anything wrong with grep stagement ?? .....processing table 2 of 2 .....migration process started at 2012-10-04 05:00:28 .....estimated # of rows 169,830... (2 Replies)
Discussion started by: Nagaraja Akkiva
2 Replies

9. Shell Programming and Scripting

Egrep

Hi I am trying to run CMD that combining EGREP and PERL in multiple files cat *07:00.22-12-13.txt | egrep" NAME| perl -ne 'print if /^sid9/ .. /^!/' " I need the see the NAME and the text from sid9 to ! how can I use the EGERP in parallel to the PERL ? This is one file Qqq... (2 Replies)
Discussion started by: sharong
2 Replies

10. Shell Programming and Scripting

Help needed with egrep

Hello folks, I am having an issue with searching for a pattern using egrep (or grep). For ex, in the below file. I am searching for all files with a particular pattern but I am not able to figure out what the issue is? $ cat test.dat TEST_211815.TXT TEST_111915.TXT TEST_112015.TXT... (2 Replies)
Discussion started by: calredd
2 Replies
QValueListConstIterator(3qt)											      QValueListConstIterator(3qt)

NAME
QValueListConstIterator - Const iterator for QValueList SYNOPSIS
All the functions in this class are reentrant when Qt is built with thread support.</p> #include <qvaluelist.h> Public Members typedef T value_type typedef const T * pointer typedef const T & reference QValueListConstIterator () QValueListConstIterator ( const QValueListConstIterator<T> & it ) QValueListConstIterator ( const QValueListIterator<T> & it ) bool operator== ( const QValueListConstIterator<T> & it ) const bool operator!= ( const QValueListConstIterator<T> & it ) const const T & operator* () const QValueListConstIterator<T> & operator++ () QValueListConstIterator<T> operator++ ( int ) QValueListConstIterator<T> & operator-- () QValueListConstIterator<T> operator-- ( int ) DESCRIPTION
The QValueListConstIterator class provides a const iterator for QValueList. In contrast to QValueListIterator, this class is used to iterate over a const list. It does not allow modification of the values of the list since that would break const semantics. You can create the appropriate const iterator type by using the const_iterator typedef provided by QValueList. For more information on QValueList iterators, see QValueListIterator. See also QValueListIterator, QValueList, Qt Template Library Classes, and Non-GUI Classes. Member Type Documentation QValueListConstIterator::pointer Pointer to value_type. QValueListConstIterator::reference Reference to value_type. QValueListConstIterator::value_type The type of value. MEMBER FUNCTION DOCUMENTATION
QValueListConstIterator::QValueListConstIterator () Creates un uninitialized iterator. QValueListConstIterator::QValueListConstIterator ( const QValueListConstIterator<T> & it ) This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Constructs a copy of the iterator it. QValueListConstIterator::QValueListConstIterator ( const QValueListIterator<T> & it ) Constructs a copy of the iterator it. bool QValueListConstIterator::operator!= ( const QValueListConstIterator<T> & it ) const Compares this iterator with it and returns TRUE if they point to different items; otherwise returns FALSE. const T &; QValueListConstIterator::operator* () const Asterisk operator. Returns a reference to the current iterator item. QValueListConstIterator<;T> & QValueListConstIterator::operator++ () Prefix ++ makes the succeeding item current and returns an iterator pointing to the new current item. The iterator cannot check whether it reached the end of the list. Incrementing the iterator returned by end() causes undefined results. QValueListConstIterator<;T> QValueListConstIterator::operator++ ( int ) This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Postfix ++ makes the succeeding item current and returns an iterator pointing to the new current item. The iterator cannot check whether it reached the end of the list. Incrementing the iterator returned by end() causes undefined results. QValueListConstIterator<;T> & QValueListConstIterator::operator-- () Prefix -- makes the previous item current and returns an iterator pointing to the new current item. The iterator cannot check whether it reached the beginning of the list. Decrementing the iterator returned by begin() causes undefined results. QValueListConstIterator<;T> QValueListConstIterator::operator-- ( int ) This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Postfix -- makes the previous item current and returns an iterator pointing to the new current item. The iterator cannot check whether it reached the beginning of the list. Decrementing the iterator returned by begin() causes undefined results. bool QValueListConstIterator::operator== ( const QValueListConstIterator<T> & it ) const Compares this iterator with it and returns TRUE if they point to the same item; otherwise returns FALSE. SEE ALSO
http://doc.trolltech.com/qvaluelistconstiterator.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 (qvaluelistconstiterator.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QValueListConstIterator(3qt)
All times are GMT -4. The time now is 11:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy