10 More Discussions You Might Find Interesting
1. UNIX for Beginners Questions & Answers
Hi ,
I have a file as shown below :
1836 21000 01052019 BH90P.TEMP.DA1836.FTP W NULL S
1836 22000 01052019 BH90P.TEMP.DA1836.FTP W 1836/21000 ... (2 Replies)
Discussion started by: krishnaswarnkar
2 Replies
2. UNIX for Beginners Questions & Answers
I have a file like this. I want to filter values for only the particular day.
Source file:
# cat /tmp/1
Name Mon Tue Wed Thu Fri Sat Sun
A Y
B Y
C Y
D Y
F Y
G Y Y
#
For ex:
I want to... (4 Replies)
Discussion started by: thomasraj87
4 Replies
3. Shell Programming and Scripting
Gents
I have this input file
file1 (uniq records)
54503207851 170211240
54503207911 170210837
54503208111 170215105
54503208112 170215210
54655210011 170223140
54655210091 170223738
54655210172 170224355
54655210251 170224741
54655210331 170225039
54655210411 170225505
54655210492... (13 Replies)
Discussion started by: jiam912
13 Replies
4. UNIX for Dummies Questions & Answers
I want to grep based on first column and print all the columns. for eg.
root 12344 /sh
root 33389 /bash
oracle 87378 /tech/oracle
oracle 26367 /tmp/oracle
Now I want to grep based on user "root" in first column and print like below.
root ... (14 Replies)
Discussion started by: baladelaware73
14 Replies
5. Shell Programming and Scripting
hi,
i have a text file with some fields.
file.txt
aaa|bbb|ccc|1-sh|2-sh|5-sh
ddd|eee|fff|1-sh|4-sh
i am selecting a line using grep command using the combination of 1st 3 column.
grep "aaa|bbb|ccc" file.txt
output:
aaa|bbb|ccc|1-sh|2-sh|5-sh
now i want to cut a field from this... (5 Replies)
Discussion started by: Little
5 Replies
6. UNIX for Dummies Questions & Answers
Hello. How does one grep lines in a file that have only one field?
AAA BBB CCC
DDD
AAA CCC
Is is possible to grep "DDD" becuase it has only one field?
Thanks.
---------- Post updated at 08:03 PM ---------- Previous update was at 07:25 PM ----------
I found it, thank you!
awk 'NF... (2 Replies)
Discussion started by: jimmyf
2 Replies
7. UNIX for Dummies Questions & Answers
hi all,
i have a data sm thg like this
28504 0 abc 148782859 42 101M nhmmmm ilopo abc 2345432
i want to get only the field which is just aftr abc i,e., 148782859, 2345432
i have used grep /abc\t/ filename to get that but its not working can any 1 help me out (5 Replies)
Discussion started by: anurupa777
5 Replies
8. Shell Programming and Scripting
hi,
I would like to search for a specific string at a specific line in a file and would like to know the count of it.
eg: samp.txt
ABC 1234 BELL
HNZ 4567 RING
NNN 5673 BELL
Please help with the command to find the count of BELL in the above file samp.txt at the specific line 10 with... (7 Replies)
Discussion started by: techmoris
7 Replies
9. UNIX for Dummies Questions & Answers
the file has several date fields.for example, #2, #3,and #5 are date fields.
I want grep year '2002' just within #2 field and get all the rows which content year '2002' in the #2 field. is it possible to do this? how to do it? Thanks (2 Replies)
Discussion started by: tiff-matt
2 Replies
10. UNIX for Dummies Questions & Answers
Hi, All,
I wonder how to change the field separator of grep from : to space when use grep to display.
for example when I use
grep -e 'pattern1' -e 'pattern2' -n filename
to find patterns, it use : to separate patterns, but I want to use blank space. is there an option I can set to... (2 Replies)
Discussion started by: Jenny.palmy
2 Replies