Sponsored Content
Top Forums Shell Programming and Scripting I am learning regular expression in sed,Please help me understand the use curly bracket in sed, Post 302904542 by Antony Ankrose on Wednesday 4th of June 2014 03:49:34 PM
Old 06-04-2014
Thanks you very much , i got it clarified.

Please help me to understand sed statement

Question 2
-----------


Code:
Code:
/opt/oracle/work/antony>  ls -l | sed -n '/^.\{2,3\}w/p'
-rw-r-----   1 oracle     dba             11 Jun  2 15:28 control.sql
-rw-r-----   1 oracle     dba             50 Mar 24 16:40 db_list
-rw-r-----   1 oracle     dba            386 Jun  3 16:34 emp.1st
-rw-r-----   1 oracle     dba              0 Jun  3 16:39 sed
-rw-r-----   1 oracle     dba            327 Jun  2 15:09 stuff.sql
-rw-r-----   1 oracle     dba            120 Jun  3 20:10 teledir.txt
drwxr-x---   2 oracle     dba             96 Jun  3 17:14 test
-rwxr-xr-x   1 oracle     dba            330 Mar 24 16:42 trex.sh

From the above select statement,

1. i am not able to understand what is the use of curly brackets?
2. what is the use of {2,3\}w meant for?

Please explain

Last edited by Antony Ankrose; 06-04-2014 at 05:23 PM.. Reason: CODE tags added
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Regular expression with sed

Hi, I'm trying following:echo "test line XA24433 test" | sed 's/.*X\(.*\)/X\1/' XA24433 test While I want the output as: XA24433 I want to grab the words starting with letter X till the next space, this word can be anywhere in the line. (9 Replies)
Discussion started by: nervous
9 Replies

2. Shell Programming and Scripting

Regular expression with SED

Hi! I'm trying to write a regexp but I have no luck... I have a string like this: param1=sometext&param2=hello&param3=bye Also, the string can be simply: param2=hello I want to return the value of param2: "hello". How can I do this? Thanks. (3 Replies)
Discussion started by: GagleKas
3 Replies

3. Shell Programming and Scripting

SED (regular expression) problem ---

Hello, I would like to replace Line 187 of my file named run_example. The original line is below, including the spaces: celldm(1) = 6.00, I want it to become something like celldm(1) = 6.05, or celldm(1) = 6.10, where the number is stored in a variable called... (6 Replies)
Discussion started by: bluesmodular
6 Replies

4. Shell Programming and Scripting

Regular expression (sed)

Hi I need to get text that are within "" For example File: asdasd "test test2" sadasds asdda asdasd "demo demo2" Output: test test2 demo demo2 Any help is good Thank you (12 Replies)
Discussion started by: blito_loco
12 Replies

5. Shell Programming and Scripting

sed regular expression help

please consider this: echo "11111*X*005010X279~ST*270*1111111*005010X279~BHT*0011*11" | sed 's/.*\(005010X(\d)(\d)(\d)*\).*$/\1/'i'm searching for first occurrence of 005010X while leaving rest of characters out. :confused: any tips? thnx in advance guys. (7 Replies)
Discussion started by: grep01
7 Replies

6. UNIX for Dummies Questions & Answers

Regular Expression In Sed

Hi , I am learing sed echo abc 123 def 456 | sed 's|\(*\) \(*\)|\1|' is returning abc def 456 i was hoping abc def "\1" should only print the occurence of the first pattern but according to my understanding it is just removing the first occurence of the second pattern... (7 Replies)
Discussion started by: max_hammer
7 Replies

7. Shell Programming and Scripting

Help with sed regular expression

Hi all, I want to get a substring from a string based on given delimiter, for example: str="foo|bar|baz" with delimiter "|", I want to get one substring at each time with the order number the substring in the whole string, given 1 to get "foo", given 2 to get "bar", given 3 to get "baz", I... (2 Replies)
Discussion started by: Roy987
2 Replies

8. UNIX for Advanced & Expert Users

sed: -e expression #1, char 0: no previous regular expression

Hello All, I'm trying to extract the lines between two consecutive elements of an array from a file. My array looks like: problem_arr=(PRS111 PRS213 PRS234) j=0 while } ] do k=`expr $j + 1` sed -n "/${problem_arr}/,/${problem_arr}/p" problemid.txt ---some operation goes... (11 Replies)
Discussion started by: InduInduIndu
11 Replies

9. Shell Programming and Scripting

sed regular expression

Hi , I need to remove pipe character from a |^ delimeted file. Something like |^tran|sformers||^|revenge |of fallen|^ to |^transformers|^revenge of fallen|^... Cold anybody please help to build the regular expression using sed . many thanks. Please use code tags next time for... (1 Reply)
Discussion started by: kokjek
1 Replies
CUBRID_DB_NAME(3)							 1							 CUBRID_DB_NAME(3)

cubrid_db_name - Get db name from results of cubrid_list_dbs

SYNOPSIS
string cubrid_db_name (array $result, int $index) DESCRIPTION
Retrieve the database name from a call to cubrid_list_dbs(3). PARAMETERS
o $result - The result pointer from a call to cubrid_list_dbs(3). o $index - The index into the result set. RETURN VALUES
Returns the database name on success, and FALSE on failure. If FALSE is returned, use cubrid_error(3) to determine the nature of the error. EXAMPLES
Example #1 cubrid_db_name(3) example <?php error_reporting(E_ALL); $conn = cubrid_connect('localhost', 33000, 'demodb', 'dba', ''); $db_list = cubrid_list_dbs($conn); $i = 0; $cnt = count($db_list); while ($i < $cnt) { echo cubrid_db_name($db_list, $i) . " "; $i++; } ?> The above example will output: demodb SEE ALSO
cubrid_list_dbs(3). PHP Documentation Group CUBRID_DB_NAME(3)
All times are GMT -4. The time now is 06:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy