10 More Discussions You Might Find Interesting
1. UNIX for Beginners Questions & Answers
Hi All,
Would you guys help me?
I have a file that consists of several unstructured fields. in this file I will take the code field and count_berry field.
but the position of the count_berry field is always changing.the column for code is always structured, which is found in column 6
I have... (4 Replies)
Discussion started by: kivale
4 Replies
2. Shell Programming and Scripting
Hi
While calculating the sum of 6 and 7 fileds it is calculate the wrong value because of floating point like 7898778.10
awk '
BEGIN { FS = OFS = "|"
}
NR == 1 {
next
}
{ UX = $1 OFS $3 OFS $4 OFS $5
p1 +=$6
p2 +=$7
}
END { for(i in UX)
... (8 Replies)
Discussion started by: jagu
8 Replies
3. Shell Programming and Scripting
split($7,a," "); date = a; time = a
split(date,d,"/"); month = sprintf("%02d",d); day = sprintf("%02d",d); year = 2000 + d % 100
split(time,t,":"); hour=t; min=t
hour >= 12? { hour=hour-12; amPm=" PM" } : amPM=" AM"
hour == 0? hour=12
time=sprintf("%02d",hour)":"sprintf("%02d",min)amPm
... (4 Replies)
Discussion started by: Michael Stora
4 Replies
4. Shell Programming and Scripting
Hi awk experts,
I am getting a strange output , may be it is normal but I am unable to comprehend,
When Using == operator it is showing correct:
# ls -l | awk '{for (i=0;i<=NF;i++) if ( $i =="info" )print $1,$6,$7,$8,$9}'
drwx------ Jan 17 10:44 info
But When using ~ (equal )... (4 Replies)
Discussion started by: rveri
4 Replies
5. UNIX for Dummies Questions & Answers
Hi,
I was hoping someone could explain this please :)
I'm using bash, scientific linux... and I don't know what else you need to know. With
awk '{ if( 0.3 == 0.1*3) print $1}' file.dat
nothing will be printed since apparently the two numbers do not equate. (Using 0.3 != 0.1*3 is seen... (4 Replies)
Discussion started by: Golpette
4 Replies
6. Shell Programming and Scripting
Hi,
I've tried searching through the forum but I've drawn a blank so i'm going to post here. I'm developing a number of checks on a CSV file, trying to find if any are greater than a max limit. I'm testing it by running it from a command line.
The file I'm testing has 8 records. When I... (3 Replies)
Discussion started by: Tmart
3 Replies
7. Shell Programming and Scripting
Hi All,
I'm assigning a numeric value to variable count=2, well its being assigned by code above the if condition.
I want to test for 2 conditions , when $count = 0 or $count <=2 and do something when the condition matches. here is my code, but i run into the infamous :
if ]
then
... (2 Replies)
Discussion started by: Irishboy24
2 Replies
8. Shell Programming and Scripting
Hello experts,
I'm stuck with this script for three days now. Here's what i need.
I need to split a large delimited (,) file into 2 files based on the value present in the last field.
Samp: Something.csv
bca,adc,asdf,123,12C
bca,adc,asdf,123,13C
def,adc,asdf,123,12A
I need this split... (6 Replies)
Discussion started by: shell_boy23
6 Replies
9. Shell Programming and Scripting
awk -F '/' '{ if (($2!="30") print }' f.dat > date_mismatch.dat
The above command is giving the desired results
But I would want use Or in the above but it is returning the complete file
awk -F '/' '{ if ($2!="30"||$2!="31") print }' f.dat > date_mismatch.dat
Have tried the... (1 Reply)
Discussion started by: infernalhell
1 Replies
10. Shell Programming and Scripting
Hi guys,
I confused about syntax used in OR script as follow:
I have this sample file separated by "|" containing:
January|Month No. 1
February|Month No. 2
March|Month No. 3
April|Month No. 4
May|Month No. 5
June|Month No. 6
July|Month No. 7
August|Month No. 8
September|Month No. 9... (11 Replies)
Discussion started by: cgkmal
11 Replies