Search Results

Search: Posts Made By: SAV
Forum: Programming 09-11-2008
8,155
Posted By SAV
that depends on settings in my.cnf file. look...
that depends on settings in my.cnf file.
look for my.cnf at /etc or /etc/mysql and find there settings related to logging.
7,422
Posted By SAV
but the most correct way is not using grep here....
but the most correct way is not using grep here. Because it potentially can match value from other fields.
Here is an awk solution:
awk '$3!=0012777201 && $3!=0012777202; BEGIN {FS="|"}' 1.txt
7,422
Posted By SAV
try egrep. it can eat regular expressions for...
try egrep.
it can eat regular expressions
for your case:
egrep -v "001277720[12]" a.txt
or
egrep -v "00127772011|00127772012" a.txt
Forum: UNIX and Linux Applications 11-09-2007
27,804
Posted By SAV
if you know Java, you can look here...
if you know Java, you can look here (http://poi.apache.org/)
Showing results 1 to 4 of 4

 
All times are GMT -4. The time now is 11:03 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy