Sponsored Content
Top Forums Shell Programming and Scripting Nested search in a file and replace the inner search Post 302890968 by tolearn on Monday 3rd of March 2014 12:02:06 AM
Old 03-03-2014
Yes.. This is my first post.
Will keep the code as per the norms mentioned.

Thank you for reminding.

I tried this as below.

It is working:

:%s/prop/qa\/prop/g

and :%s/qa/non\-qa/g

But my doubt is, can I try with single command replacing both?

Last edited by Don Cragun; 03-03-2014 at 01:14 AM.. Reason: Add ICODE tags.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Search and replace in file

Hi guys, I have one file with duplicate string. I want to replace all the occurance of that string with some other string. How can I do that in vi editor? Malay Maru (3 Replies)
Discussion started by: malaymaru
3 Replies

2. Shell Programming and Scripting

Search and replace in file..

Hi All, As I'm working on a Unix script... and the requirement is like, I need to search a word and replace it with the another word... for that i'm using SED command.... can anybody give any other alternate for this...? Thanks Amit (2 Replies)
Discussion started by: Amits
2 Replies

3. Shell Programming and Scripting

Perl: Search for string on line then search and replace text

Hi All, I have a file that I need to be able to find a pattern match on a line, search that line for a text pattern, and replace that text. An example of 4 lines in my file is: 1. MatchText_randomNumberOfText moreData ReplaceMe moreData 2. MatchText_randomNumberOfText moreData moreData... (4 Replies)
Discussion started by: Crypto
4 Replies

4. Shell Programming and Scripting

search and replace in a file

Hi I have to search & replace column in the file.For example ..below iam having File1. in which 3rd column ...if it is A it should be 'ACT' if P it should be 'PAD' and if it ils D it should be 'DEC' I have to pass column no ,value and to be converted value as variables in to the... (2 Replies)
Discussion started by: satyam_sat
2 Replies

5. Shell Programming and Scripting

nested functions search

I want to write a shell script which traverses a cpp file. Suppose there is function fncn_name6 .. which is called by fncn_name5 which in turn called by fncn_name4 and so on .. in a single cpp class. ie fncn_name1 { fncn_name2 { fncn_name3 } { fncn_name4 ... (0 Replies)
Discussion started by: ultimatix
0 Replies

6. UNIX for Advanced & Expert Users

search and replace in a file

I have a file (say file1.txt) and I have to search for a line which has a text replace it and replace another string too in the same line. Eg: file1.txt -------- x='hai' y='world' z='unix' x='hai' y='world' x='hai' z='perl' y='world' z="world" k="junk" b="world" z='perl' x='hai'... (3 Replies)
Discussion started by: ammu
3 Replies

7. Shell Programming and Scripting

Awk Script: Nested search using different patter

Hi Friends. Please have a look at dummy file. I need to extract from this file: 1. Counts of event= 2. the 2nd coulmn is unique call id of this transaction. Based on that, i have to search for txstatus= . Note: Values of event, calltype and txstatus can be anything. I want to print... (1 Reply)
Discussion started by: itsmesanju
1 Replies

8. Shell Programming and Scripting

Help on search and replace in a file

Hi all, The operating system is Solaris 10 I have example line here below I need to change the stat1 to stat2 using a shell script. search for space(" ") and replace with "\ " Stat1 --- /data/Sat Night Stay.txt Stat2 --- /data/Sat\ Night\ Stay.txt Thanks Firestar. (1 Reply)
Discussion started by: firestar
1 Replies

9. Shell Programming and Scripting

Search and Replace in a new FILE.

Hi, more data.txt more srstring.sh input="data.txt" while IFS= read -r var do startdirectory=$loc search=$(echo $var | awk -F'=' '{print $1}') replace=$(echo $var | awk -F'=' '{print $2}') find "/tmp/config" -type f -exec grep -l "$search" {} + | while read file do if sed -e... (9 Replies)
Discussion started by: mohtashims
9 Replies

10. Shell Programming and Scripting

Search and replace in file

hi All i'm new to shell/bash scripting and need help to write a script. question: i have a file of 100's of line, i need to replace all zeros in that file with its respective position, starting from 0 to 23 and remove the remaining sample file is like. Enter the date in the format... (12 Replies)
Discussion started by: sunnu2u86
12 Replies
scf_property_create(3SCF)												 scf_property_create(3SCF)

NAME
scf_property_create, scf_property_handle, scf_property_destroy, scf_property_get_name, scf_property_type, scf_property_is_type, scf_prop- erty_get_value, scf_pg_get_property - create and manipulate property handles in the Service Configuration Facility SYNOPSIS
cc [ flag... ] file... -lscf [ library... ] #include <libscf.h> scf_property_t *scf_property_create(scf_handle_t *handle); scf_handle_t *scf_property_handle(scf_property_t *prop); void scf_property_destroy(scf_property_t *prop); ssize_t scf_property_get_name(const scf_property_t *prop, char *buf, size_t size); int scf_property_type(const scf_property_t *prop, scf_type_t *type); int scf_property_is_type(const scf_property_t *prop, scf_type_t type); int scf_property_get_value(const scf_property_t *prop, scf_value_t *value); int scf_pg_get_property(const scf_property_t *pg, const char *name, scf_property_t *prop); Properties are named sets of values of one type. They are grouped into property groups (see scf_pg_create(3SCF)) that are updated atomi- cally using transactions (see scf_transaction_create(3SCF)). An scf_property_t is an opaque handle that can be set to a single property at any given time. When set, it inherits the point-in-time from the source scf_propertygroup_t and does not change until reset. The scf_property_create() function allocates and initializes a new scf_property_t bound to handle. The scf_property_destroy() function destroys and frees prop. The scf_property_handle() function returns the handle to which prop is bound. The scf_property_type() function retrieves the type of the property to which prop is set. The scf_property_is_type() function determines if the property is compatible with type. See scf_value_is_type(3SCF). The scf_property_get_value() function retrieves the single value that the property to which prop is set contains. If the property has more than one value, the value argument is set to one of the values. To retrieve all values associated with a property, see scf_iter_prop- erty_values(3SCF). The scf_pg_get_property() function sets prop to the property specified by name in the property group specified by pg. Upon successful completion, scf_property_create() returns a new scf_property_t. Otherwise, it returns NULL. Upon successful completion, scf_property_get_name() function returns the length of the string written, not including the terminating null byte. Otherwise, it returns -1. Upon successful completion, scf_pg_get_property(), scf_property_type(), scf_property_is_type(), and scf_pg_get_value() functions return 0. Otherwise, they return -1. The scf_property_create() function will fail if: SCF_ERROR_INVALID_ARGUMENT The value of the handle argument is NULL. SCF_ERROR_NO_MEMORY There is not enough memory to allocate an scf_property_t. SCF_ERROR_NO_RESOURCES The server does not have adequate resources for a new property handle. The scf_property_handle() function will fail if: SCF_ERROR_HANDLE_DESTROYED The handle associated with prop has been destroyed. The scf_property_get_name(), scf_property_type(), scf_property_is_type(), and scf_property_get_value() functions will fail if: SCF_ERROR_DELETED The property's parent property group or an ancestor has been deleted. SCF_ERROR_NOT_BOUND The handle was never bound or has been unbound. SCF_ERROR_NOT_SET The property is not set. SCF_ERROR_CONNECTION_BROKEN The connection to the repository was lost. The scf_property_is_type() function will fail if: SCF_ERROR_INVALID_ARGUMENT The type argument is not a valid type. SCF_ERROR_TYPE_MISMATCH The prop argument is not of a type compatible with type. The scf_pg_get_property() function will fail if: SCF_ERROR_NOT_SET The property group specified by pg is not set. SCF_ERROR_NOT_FOUND The property specified by name was not found. SCF_ERROR_INVALID_ARGUMENT The value of the name argument is not a valid property name. SCF_ERROR_HANDLE_MISMATCH The property group and property are not derived from the same handle. SCF_ERROR_CONNECTION_BROKEN The connection to the repository was lost. SCF_ERROR_NOT_BOUND The handle was never bound or has been unbound. SCF_ERROR_DELETED The property group or an ancestor has been deleted. The scf_property_get_value() function will fail if: SCF_ERROR_CONSTRAINT_VIOLATED The property has more than one value associated with it. The value argument will be set to one of the values. SCF_ERROR_NOT_FOUND The property has no values associated with it. The value argument will be reset. SCF_ERROR_HANDLE_MISMATCH The property and value are derived from different handles. The scf_error(3SCF) function can be used to retrieve the error value. See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ libscf(3LIB), scf_error(3SCF), scf_handle_decode_fmri(3SCF), scf_iter_property_values(3SCF), scf_pg_create(3SCF), scf_prop- erty_to_fmri(3SCF), scf_transaction_create(3SCF), scf_value_is_type(3SCF), attributes(5) 24 Aug 2005 scf_property_create(3SCF)
All times are GMT -4. The time now is 10:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy