Sponsored Content
Top Forums Shell Programming and Scripting sed - searching token in certain order Post 302851411 by Don Cragun on Sunday 8th of September 2013 09:05:28 PM
Old 09-08-2013
Quote:
Originally Posted by jcdole
I know little about sed, I know nothing about awk.
That didn't answer the question. Will you accept a solution for this problem that uses awk?
Quote:
Originally Posted by jcdole
I have try this :
Code:
my_function () {
sed -n '/^$1/,$p  $2 | sed -n '/^$3/,p' | sed '/$5/ q'
}

In the following text sample :
Code:
Thank you for the input sample, seeing it helped.
I have deleted it here to save space.

Now calling the function with these parameters
Code:
my_function "In the Linux startup process" "./file_text.txt" "Like init" "manages" "ways"

This find $1 in file $2, and then find $3 before $5.
This give a few lines beginning with $3 and last line ending with $5
There are a few problems here:
  1. You're using the wrong quotes to do what you want. (Positional parameters are not expanded inside single-quoted strings.)
  2. Your quotes aren't matched. (You have 5 single quotes in these 3 sed commands.)
  3. In the 1st message in this thread you said the 1st argument to your function was the file name; here it is the 2nd argument. Which should it be?
  4. In the 1st message in this thread you said the 5th argument was a single character; "ways" is not a single character. What is the real requirement?
  5. In the 1st message in this thread you said the 3rd argument had to appear at the start of a line, after a <space> character, or after a <tab> character. Your script seems to only allow for the 1st of these three options. Is this still a requirement?
Quote:
Originally Posted by jcdole
Code:
2nd sample deleted to save space.

Now searching with $4 = manages in the first line will return true
and searching with $4 = background in the first line will return false

Thank you for taking time to help me.
Do you really need to return the strings "true" and "false"; or are exit codes zero and non-zero, respectively, sufficient.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

using sed and regex to reverse order???

so i have been trying to learn how to manipulate text on my own and have gotten stumped... let's say i have a text file that says (highly simplified): people ordinary How would swap the order of the words.. I know i need to use sed and some kind of back reference but cannot make it... (2 Replies)
Discussion started by: urtherhoda
2 Replies

2. UNIX for Dummies Questions & Answers

Changing the order using sed

I have a text "abc def ghi" and I want to get it as "def abc ghi" I am using this echo "abc def ghi" | sed 's/\(*\)\(*\)/\2\1/' But I am not able to get the output, could anyone help me. Thanks (9 Replies)
Discussion started by: venu_nbk
9 Replies

3. Shell Programming and Scripting

sed searching across lines

hi, i'm making now a bash script, that runs some compiler... i want to take only errors form its output eg: output: bla bla bla ... erros is 1324546 the bla bla bla bla bla bla... ... and i want to get only erros is 1324546 the bla bla bla (11 Replies)
Discussion started by: miechu
11 Replies

4. Shell Programming and Scripting

Reversing file order using SED

Im trying to develop a shell script that will change the content order of the file. For example I have a file that says a b c d I want to change this to be d c b a Im trying to use sed to this by reading the file and then inserting each line at the top #!/usr/bin/ksh ... (3 Replies)
Discussion started by: MBGPS
3 Replies

5. Shell Programming and Scripting

sed or awk to order a file

Hi - I have a file with lots of lines in that I need to order based on the number of commas! e.g the file looks something like :- cn=john,cn=users,cn=uk,dc=dot,dc=com cn=john,cn=users,dc=com cn=users,cn=groups,dc=com cn=john,cn=admins,cn=users,cn=uk,dc=dot,dc=com... (4 Replies)
Discussion started by: sniper57
4 Replies

6. Shell Programming and Scripting

Sed - Pattern Searching

Hi, Please take a look at the below eg. I would like to search for abc() pattern first and then search for (xyz) in the next line. If I can find the pattern, then I should delete the 3 lines. I can only find the pattern and delete but I am unable to find two patterns and delete. Any... (8 Replies)
Discussion started by: sreedevi
8 Replies

7. UNIX for Dummies Questions & Answers

Searching for multiple words on a line in any order issue

Hi again I have figured out how to be able to sort through lines in a file with multiple words in any order and display them using this command: cat file | grep -i $OPTION1 | grep -i $OPTION2 | grep -i $OPTION3 OPTION1 is 2008, OPTION2 is Mar, OPTION 3 is Tue Result: Tue Mar 25... (4 Replies)
Discussion started by: semaj
4 Replies

8. Shell Programming and Scripting

sed - Removing all characters from token to end of line

Hello. The token is any printable characters between 2 " . The token is unknown, but we know that it is between 2 " Tok 1 : "1234x567" Tok 2 : "A3b6+None" Tok 3 : "A3b6!1234=@" The ligne is : Line 1 : "9876xABCDE"Do you have any code fragments or data samples in your post Line 2 : ... (3 Replies)
Discussion started by: jcdole
3 Replies

9. Shell Programming and Scripting

sed string with any order

Hi, i have a strange prob. log file contains ip, protocol, user name, agent . these can be in any order. If log contains the above order able to fetch all details but if details are in diff order not able to fetch all details. using below command. grep -A50 "Entry " "/logs/file.log" \ |grep... (6 Replies)
Discussion started by: Satyak
6 Replies

10. Shell Programming and Scripting

Searching for a token in a file

Hi All, I am new to scripting. I have a requirement where I need to search for token present in array in a file. If the token is found I need to take the first column of that line from the file and append it to token and direct it to a new file. e.g. token file token.txt contains abc... (2 Replies)
Discussion started by: alok2082
2 Replies
All times are GMT -4. The time now is 01:57 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy