Grep number between Square [] brackets


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Grep number between Square [] brackets
# 8  
Old 03-29-2014
Can you please explain deleting duplicate entries and sorting
How do you need the output
This User Gave Thanks to SriniShoo For This Post:
# 9  
Old 04-01-2014
I am getting duplicate entry in variable temp for example temp=2|2|3|4|4.
I was trying to get the temp=2|3|4. So I added sort -u at last, but not getting. it is right way to get using sort -u or any other options are available.

Code:
temp=$(grep "nk1577" $INPUTFILE | awk -F [\]\[] '{split($2, a, " : "); print a[2]}' ORS='|' | sort -u)

# 10  
Old 04-01-2014
Code:
temp=$(grep "nk1577" $INPUTFILE | awk -F [\]\[] '{split($2, a, " : "); b[a[2]]++} END {for(x in b) {a[n++] = x+0}; asort(a); for(i = 1; i <= n; i++) {print a[i]}}' ORS='|')

This User Gave Thanks to SriniShoo For This Post:
# 11  
Old 04-01-2014
Quote:
Originally Posted by nes
I am getting duplicate entry in variable temp for example temp=2|2|3|4|4.
I was trying to get the temp=2|3|4. So I added sort -u at last, but not getting. it is right way to get using sort -u or any other options are available.

Code:
temp=$(grep "nk1577" $INPUTFILE | awk -F [\]\[] '{split($2, a, " : "); print a[2]}' ORS='|' | sort -u)

No!
Sort is used to sort lines into order.
You requested that there be only one line of output, and the code samples that you have been given provide a single line of output as you requested; so sort will have no affect.

If you would have answered the questions I asked in message #5 in this thread, the volunteers here trying to help you might be able to help you find a solution to your problem instead of trying to patch together something that probably still won't meet your needs.

Please answer the questions I asked earlier so we can help you find a solution will meet your needs.
These 2 Users Gave Thanks to Don Cragun For This Post:
# 12  
Old 04-01-2014
Longhand using __builtins__ on OSX 10.7.5, ksh, default terminal.
Code:
#/bin/ksh
# get_vals.sh
ifs_str="$IFS"
IFS="$IFS"'[]'
echo "20140320 00:08:23.846 INFO  [WebContainer : 84] - anything in line
20140320 00:08:23.846 Test  [translate : 589] - Virtual and lab lab anything
20140320 00:08:23.846 Data  [anything : 60] - anything in line
20140320 00:08:23.847 anyting  [anything : 5] - anything in line" > /tmp/file1
temp=""
text=""
while read line
do
	temp=($line)
	text=$text${temp[5]}'|'
done < /tmp/file1
echo "$text"
IFS="$ifs_str"
exit 0

Results:-
Code:
Last login: Tue Apr  1 09:03:46 on ttys000
AMIGA:barrywalker~> chmod 755 get_vals.sh
AMIGA:barrywalker~> ./get_vals.sh
84|589|60|5|
AMIGA:barrywalker~> _

EDIT:

Added text="" for fullness.

Last edited by wisecracker; 04-01-2014 at 05:42 AM.. Reason: See above...
These 2 Users Gave Thanks to wisecracker For This Post:
# 13  
Old 04-01-2014
You can adjust it a little towards the end to have:-
Code:
:
:
:
done < /tmp/file1
text="${text%|}"
echo "$text"
:
:

This will trim off the trailing | if that is what is required.



Robin
These 2 Users Gave Thanks to rbatte1 For This Post:
# 14  
Old 04-01-2014
Quote:
Originally Posted by Don Cragun
No!
Sort is used to sort lines into order.
You requested that there be only one line of output, and the code samples that you have been given provide a single line of output as you requested; so sort will have no affect.

If you would have answered the questions I asked in message #5 in this thread, the volunteers here trying to help you might be able to help you find a solution to your problem instead of trying to patch together something that probably still won't meet your needs.

Please answer the questions I asked earlier so we can help you find a solution will meet your needs.

Hi Don Cragun,

I have log file which is mixed of all users, so perticular user log not getting from common log file. I have already captured lines based on userid. But thread I wanted to get in one variable. So here thread value is in between squre brackets after colon ( : ).[/QUOTE]
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

IF statement with square brackets

Hi All, Hope you all are doing good. Yesterday in my project i came across a scenario which i can not guess why it was working in one region and why it was not in another region. Please find my issue below. I am using AIX version 6.0 of UNIX in my project, in shell scripting i have the... (1 Reply)
Discussion started by: mad man
1 Replies

2. Shell Programming and Scripting

Problem with occurence of square brackets

Hello all, I have the following problem: $ cat infile this is spam and i need this too this is spam and i need this too $ perl -nwe '$_ =~ /]+ \]+)\]\]*\]? (\+)$/; print "$1 - $2\n";' infile i need this - too i need this - and i need this too I am not sure how many occurences of... (13 Replies)
Discussion started by: zaxxon
13 Replies

3. Shell Programming and Scripting

Compare the value in between square brackets in file

I wanted to compare the value inside the Squre bracket after Colon ( : ) based on any value(seperated by or operator | ) inside the variable Thread and if match found then wnated to store in output file Input file : 20140320 00:08:43.918 INO 35] - Corporate hub is 20140320 00:08:43.918... (2 Replies)
Discussion started by: nes
2 Replies

4. UNIX for Dummies Questions & Answers

Single or double square brackets

Hi frieds, I don't understand the difference between single square bracket and double square brackets in a IF condition. Ex. if ; then RETURNJOB=1 else RETURNJOB=0 fi It run, but this if ]; then RETURNJOB=1 else RETURNJOB=0 fi (4 Replies)
Discussion started by: dogshort
4 Replies

5. Shell Programming and Scripting

Delete text between square brackets and also delete those square brackets using sed or awk

Hi All, I have a text file which looks like this: computer programming systems engineering I want to get rid of these square brackets and also the text that is inside these brackets. So that my final text file looks like this: computer programming systems engineering I am using... (3 Replies)
Discussion started by: shoaibjameel123
3 Replies

6. UNIX for Dummies Questions & Answers

Test command - Two square brackets

Hello, Can someone please explain to me the following line, ] && break I do not understand why two test square brackets are used. Thanks, Shantanu ---------- Post updated at 03:38 PM ---------- Previous update was at 03:35 PM ---------- And, also why there's a $ before (echo $c |... (5 Replies)
Discussion started by: Shan_u2005
5 Replies

7. Shell Programming and Scripting

Double square brackets question

Hi, I just came across an interesting shell script syntax like the one below: ] && (trap 'rm -rf ${WORK_DIR}/*.$$; echo "\n\nInterrupted !!\n\n"; exit 4' 1 2 3 15) Can someone please explain the code snippet above? The trap command bit is fine but ] && is the hazy part. Generally we use an... (2 Replies)
Discussion started by: King Nothing
2 Replies

8. Shell Programming and Scripting

Use of double square brackets in ksh

Hi First apologies if this has been raised before. I've got the following in a ksh script: if ] For some reason this does not work. But if I remove the double square brackets to: if This works. I thought ksh supported the ]. Or is there more to it? Thanks in advance. (3 Replies)
Discussion started by: tsu3000
3 Replies

9. Shell Programming and Scripting

WHy the double square brackets?

One of the senior administrators gave me a shell script to modify and it begins as follows: if ] && ] {more code follows} Why the double square brackets? (10 Replies)
Discussion started by: mojoman
10 Replies

10. UNIX for Dummies Questions & Answers

square brackets

I would like to substitute a phrase which contains square brackets. change TO how? Thanks (2 Replies)
Discussion started by: gilead29
2 Replies
Login or Register to Ask a Question