Sponsored Content
Top Forums Shell Programming and Scripting Replace if regex on specific column matches expression? Post 302261737 by EXT3FSCK on Tuesday 25th of November 2008 12:31:46 PM
Old 11-25-2008
I have these lines:

Code:
rewrite ^action/myprofile/$ myProfile.php?%$query_string;
rewrite ^action/viewfriends/([^\/]+)/$ viewFriends.php?user=$1&%$query_string last;
rewrite ^action/profilecomments/$ profileComments.php?%$query_string;
rewrite ^action/invitation/send/$ membersInvite.php?%$query_string;
rewrite ^action/invitation/sent/$ invitationHistory.php?%$query_string;
rewrite ^action/mydashboard/$ myDashBoard.php;
rewrite ^action/videoplaylistmanage/$ videoPlayListManage.php?%$query_string last;
rewrite ^action/mydashboard/$ myDashBoard.php?%$query_string;
rewrite ^action/viewvideoplaylist/$ viewVideoPlayList.php?%$query_string;
rewrite ^action/videoplaylist/$ videoPlayList.php?%$query_string;
rewrite ^action/manageblog/$ manageBlog.php?%$query_string;
rewrite ^action/bloglist/$ blogList.php?%$query_string;
rewrite ^action/blogcomment/$ blogComment.php?%$query_string;
rewrite ^action/videoadvertisement/$ videoAdvertisement.php?%$query_string;
rewrite ^action/blogcategory/$ blogCategory.php?%$query_string;
rewrite ^action/exturl/$ exturl.php?%$query_string;
rewrite ^action/profile/avatar/$ avatarUpload.php?%$query_string;

I need them to look like:

Code:
rewrite ^/action/mydashboard/$ /myDashBoard.php;
rewrite ^/action/videoplaylistmanage/$ /videoPlayListManage.php?%$query_string last;
rewrite ^/action/mydashboard/$ /myDashBoard.php?%$query_string;
rewrite ^/action/viewvideoplaylist/$ viewVideoPlayList.php?%$query_string;
rewrite ^/action/videoplaylist/$ /videoPlayList.php?%$query_string;
rewrite ^/action/manageblog/$ /manageBlog.php?%$query_string;
rewrite ^/action/bloglist/$ /blogList.php?%$query_string;
rewrite ^/action/blogcomment/$/ /blogComment.php?%$query_string last;
rewrite ^/action/videoadvertisement/$ /videoAdvertisement.php?%$query_string;
rewrite ^/action/blogcategory/$/blogCategory.php?%$query_string;
rewrite ^/action/exturl/$ /exturl.php?%$query_string;

See on the 2nd column how it matches alot of others than "Action" as in the 2nd column, which is why I wanted to use expressions. And notice has some has 3rd columns, I just want it to search the 2nd and 3rd.

Thanks!

Last edited by EXT3FSCK; 11-25-2008 at 02:04 PM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to replace a specific word in specific column?

Hi My orginal file is like (100s of lines) id host ip location remarks 1 host1 ip1 - xxx 2 host2 ip2 - xxx 3 host3 ip3 - xxx -- -- 9 host9 ip9 - xxx I have a ref file like host1 location1 host2 location2 host3 location3 -- --... (6 Replies)
Discussion started by: ./hari.sh
6 Replies

2. Shell Programming and Scripting

replace a column in a file if it matches certain pattern

Hi, I want to replace a column in a file if it matches certain pattern. Can you help me on this. Here is the file content. 000000 1111111 2222222 011111 0123445 1234556 023445 1111111 2343455 if second column contains 1111111 i need to replace it with 0000000 Can you... (6 Replies)
Discussion started by: Krrishv
6 Replies

3. Shell Programming and Scripting

SED Replacing all but one regex match on a line or specific matches

Hi, I'm attempting to rename some files that have spaces in them. Without linking sed commands together is it possible to replace the first three "." to " ". File.name.is.long.ext -> File name is long.ext I can get the desired effect with echo "File.name.is.long.ext" | sed 's/\./ /g;s/... (5 Replies)
Discussion started by: vectox
5 Replies

4. Shell Programming and Scripting

Replace column that matches specific pattern, with column data from another file

Can anyone please help with this? I have 2 files as given below. If 2nd column of file1 has pattern foo1@a, find the matching 1st column in file2 & replace 2nd column of file1 with file2's value. file1 abc_1 foo1@a .... abc_1 soo2@a ... def_2 soo2@a .... def_2 foo1@a ........ (7 Replies)
Discussion started by: prashali
7 Replies

5. Shell Programming and Scripting

Bash Replace value in specific column

Hi all, I have two files with the following format: file1 BBB;33 AAA;2 CCC;5 file2 5;.;.;. 33;.;.;. The first file contain a list of code and numbers. The second file only the number. I would like to replace the corresponding code in the first column of the file1 with the... (3 Replies)
Discussion started by: g256
3 Replies

6. Shell Programming and Scripting

Help with replace specific column command

Input file: ASD_QAW 12 A_@ AE_AQ 21 PA_123 ASDA_@ 23 ADA_AS . . Output file: ASD_QAW 12 A @ AE_AQ 21 PA 123 ASDA_@ 23 ADA AS . . Do anybody know how to just specific and replace "_" in column 3 with tab delimiter (\t)? Thanks for advice. (2 Replies)
Discussion started by: perl_beginner
2 Replies

7. Shell Programming and Scripting

Replace a specific column with a specific value

Hi, I am looking to replacing value of a specific column of /etc/pam.d/system-auth file. My file looks like this password sufficient pam_unix.so md5 shadow nullok try_first_pass use_authtok expected result password sufficient pam_unix.so md5 shadow nullok try_first_pass use_authtok... (5 Replies)
Discussion started by: Litu1988
5 Replies

8. Shell Programming and Scripting

CSV file REPLACE COLUMN if it matches

I have a file cat 1.txt AAAA , BBBB , CCCC , DDDD DFDF , DFDF , DFDF , FDDD AA11 , DFDF , 0000 , UTIO ADSD , WERT, 0000 , JKJL If the 3rd column is not equal to "0000" , then it should replace "0000" with "XXXX" and if its equal to "0000" then print the line as it is. need help. (9 Replies)
Discussion started by: aravindj80
9 Replies

9. Shell Programming and Scripting

Search Replace Specific Column using RegEx

Have Pipe Delimited File: > BRYAN BAKER|4/4/2015|518 VIRGINIA AVE|TEST > JOE BAXTER|3/30/2015|2233 MockingBird RD|ROW2On 3rd column where the address is located, I want to add a space after every numeric value - basically doing a "s//&\ / ": > BRYAN BAKER|4/4/2015|5 1 8 VIRGINIA AVE|TEST > JOE... (5 Replies)
Discussion started by: svn
5 Replies

10. UNIX for Beginners Questions & Answers

Regex Expression Replace

I have a XML file where there is a tag with like <wd:address_line_1>1234 Street</wd:address_line_1> I want to replace the values "1234 Street" with "Test Data". Different people have different address lines and i want to replace with a fixed value to mask the file. I was trying to use sed... (7 Replies)
Discussion started by: dr46014
7 Replies
TOMOYO-PATTERNIZE(8)					  System Administration Utilities				      TOMOYO-PATTERNIZE(8)

NAME
tomoyo-patternize - utility to convert pathnames in policy into patterns SYNOPSIS
tomoyo-patternize tomoyo-patternize [configfile] DESCRIPTION
This program reads domain policy from standard input and replaces pathnames with patterns. Replacement rules are defined in /etc/tomoyo/tools/patternize.conf. The resulting policy is sent to standard output and is useful to shorten and simplify domain or exception policy. Pathnames used for domain names themselves will not be replaced. Only the first matching rule is used for any particular pathname. If a pathname does not match any rules, it is left unchanged. EXAMPLES
Replace "proc:/self/fd/0" with "proc:/self/fd/$" rewrite path_pattern proc:/self/fd/$ Replace "proc:/123/status" with "proc/$/status" rewrite head_pattern proc:/$ Replace "dev(8,1):/etc/mtab~456" with "dev(8,1):/etc/mtab~$" rewrite tail_pattern /etc/mtab~$ Replace "/tmp/phpZjk1k3" with @GROUP1 rewrite path_pattern /tmp/php?????? @GROUP1 Replace integers between 0-100 or 100-200 with @GROUP2 rewrite number_pattern 0-100 @GROUP2 rewrite number_pattern 100-200 @GROUP2 Replace loopback addresses with @LOCALHOST rewrite address_pattern 127.0.0.1 @LOCALHOST rewrite address_pattern 0:0:0:0:0:0:0:1 @LOCALHOST See the configuration file for more information on rule syntax. BUGS
If you find any bugs, send an email to <tomoyo-users-en@lists.sourceforge.jp>. AUTHORS
Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Main author. Jamie Nguyen <jamie@tomoyolinux.co.uk> Documentation and website. SEE ALSO
tomoyo-findtemp(8), tomoyo-diffpolicy(8) See <http://tomoyo.sourceforge.jp> for more information. tomoyo-tools 2.5.0 2012-04-14 TOMOYO-PATTERNIZE(8)
All times are GMT -4. The time now is 06:17 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy