Sponsored Content
Full Discussion: sed problem
Top Forums UNIX for Dummies Questions & Answers sed problem Post 302133634 by ravykanth on Friday 24th of August 2007 10:30:21 AM
Old 08-24-2007
bhargav - I don't want to remove the entire second line, I have to remove the particular string.

vgersh99 - thanks for simplifying the syntax, but it didn't solve my immediate problem.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Sed Problem

I AM TRYING TO APPEND THE HOSTNAME OF A UNIX SERVER I WORK WITH SO I COULD DO A LOADING INTO A DATABASE. THE COMMAND I AM USING IS df -k | sed 's/^/dataserver /' What I intend to do is append the hostname dynamically by using the hostname command instead of having to manually enter... (1 Reply)
Discussion started by: Chelsea
1 Replies

2. UNIX for Dummies Questions & Answers

Problem with sed

Hi , echo "07/05/2008" | sed 's/\(..\)\/\(..\)\/\(..\)/\3\2\1/' Output :: 20050708 Expected output is 20080507 Iam not getting the bug in this. Thanks for the help -- penchal (4 Replies)
Discussion started by: penchal_boddu
4 Replies

3. Shell Programming and Scripting

Problem with SED

Hi, I have to use SED to remove the prefix "219-" from a text file containing phone numbers and I have to remove the ":" as well. I write the following code but it does not seem to work. Can someone help me please? mohit@mohit-desktop:~$ sed -n s/219-/" "/p corp_phones_bak > noprefix1... (2 Replies)
Discussion started by: mojoman
2 Replies

4. Shell Programming and Scripting

Problem in sed.

Hi All! I am trying to use shell variables in a sed statement, but facing an error.I used the double quotes instead if single quotes in the sed statement. # sed -i -e "s/password/$decoded/g;" $CATALINA_HOME/conf/server.xml sed: -e expression #1, char 11: unterminated `s' command # ... (5 Replies)
Discussion started by: nua7
5 Replies

5. Shell Programming and Scripting

Sed Problem

I have a file which contain many lines see below. "/var/www/abc>" I want to remove Both of these values "" and > (5 Replies)
Discussion started by: aliahsan81
5 Replies

6. Shell Programming and Scripting

SED - Problem

I have a file with a lot of numbers in it and I need to clean it up and make it look nice and proper. I found this little gem of a one-liner and basically understand what it is doing but I would like to further understand what each part of the command is doing. Being a newb, I am just trying to... (2 Replies)
Discussion started by: genedc1
2 Replies

7. Programming

sed problem

Hi all In input file I have records like this: 0,1,0,87,0,0,"6,87","170,03",0,"43,5",0,0,0,0,"6,87","126,53"and in output file I need that these records transforms in : 0 1 0 87 0 0 6,87 170,03 0 43,5 0 0 0 0 6,87 126,53 Could you help me in this case? Please (3 Replies)
Discussion started by: shizik
3 Replies

8. Shell Programming and Scripting

sed problem

Hi i am stuck with a very silly problem :mad: below is my code echo 201010_1212_121.xml i need to replace xml with csv so i did echo 201010_1212_121.xml | sed 's/.*\.xml/.*\.csv/' echo 201010_1212_121.xml | sed 's/*.xml/*.csv/' echo 201010_1212_121.xml |... (4 Replies)
Discussion started by: aishsimplesweet
4 Replies

9. UNIX for Dummies Questions & Answers

sed problem

Hi Folks, I want to replace these numbers with words as the following: $echo 1 11 223 I want to replace each number with it name (e.g. "1" replaced with "one", etc.) just to determine how sed works in such case. Thanks in advance:). Leo (8 Replies)
Discussion started by: leo_ultra_leo
8 Replies

10. UNIX for Dummies Questions & Answers

sed Or Grep Problem OR Terminal Problem?

I don't know if you guys get this problem sometimes at Terminal but I had been having this problem since yesterday :( Maybe I overdid the Terminal. Even the codes that used to work doesn't work anymore. Here is what 's happening: * I wanted to remove lines containing digits so I used this... (25 Replies)
Discussion started by: Nexeu
25 Replies
attrlist(1m)															      attrlist(1m)

NAME
attrlist - A dcecp task object that manipulates attribute lists SYNOPSIS
attrlist add attrlist -member attrlist attrlist getvalues attrlist -type typename attrlist help [operation | -verbose] attrlist list attrlist attrlist modify attrlist {[-add attribute_type attribute_values] [-change attribute_type attribute_values] [-remove attribute_type attribute_values]} attrlist operations attrlist remove attrlist -member attrlist ARGUMENTS
A list of one or more dcecp elements. An attrlist can be a single character, but usually consists of at least one attribute type and its value, as shown in the following: {CDS_Convergence medium} The name of the attrlist operation for which to display help information. DESCRIPTION
The attrlist task object represents an attribute list as returned or accepted by many dcecp commands. Use this object to check or manipu- late attribute lists so that they can be used by other commands, most commonly in scripts. OPERATIONS
attrlist add Appends one attribute list to another. The syntax is as follows: attrlist add attrlist -member attrlist The add operation returns an attribute list with the attributes specified as the value of the required -member option appended. Privileges Required No special privileges are needed to use the attrlist add command. Examples dcecp> attrlist add {{a b} {c d}} -member {{e f} {g h}} {a b} {c d} {e f} {g h} dcecp> attrlist getvalues Returns the values of the attributes named in an attribute list. The syntax is as follows: attrlist getvalues attrlist -type typename The getvalues operation returns the values of all attributes that are both named in the attribute list and of the type specified by the required -type option. The value can be a single type, but if the attribute appears more than once in the attribute list, the value of each instance is returned on a separate line. Privileges Required No special privileges are needed to use the attrlist getvalues command. Examples dcecp> attrlist getvalues {{a w x} {c y} {a z}] -type a {w x} z dcecp> This command can be used to filter the output of show operations. For example: dcecp> attrlist getvalues [dir show /.:/hosts] -type CDS_UTS 1994-07-01-10:29:59.265-05:00I0.000/00-00-c0-f7-de-56 dcecp> With abbreviations, the above command could be entered as follows: dcecp> at g [dir show /.:/hosts] -t CDS_UTS 1994-07-01-10:29:59.265-05:00I0.000/00-00-c0-f7-de-56 dcecp> attrlist help Returns help information about the attrlist task object and its operations. The syntax is as follows: attrlist help [operation | -verbose] Options Displays information about the attrlist task object. Used without an argument or option, the attrlist help command returns brief information about each attrlist operation. The optional opera- tion argument is the name of an operation about which you want detailed information. Alternatively, you can use the -verbose option for more detailed information about the attrlist task object itself. Privileges Required No special privileges are needed to use the attrlist help command. Examples dcecp> attrlist help add Adds attributes to a list. getvalues Returns the values of specified attributes. list Returns the attribute types present in a list. modify Modifies an attribute list. remove Removes attributes from a list. help Prints a summary of command-line options. operations Returns a list of the valid operations for this command. dcecp> attrlist list Returns a list of attribute type names from an attribute list. The syntax is as follows: attrlist list attrlist The list operation returns a list of all the attribute type names in the attribute list in the order that they appear in the list. Privileges Required No special privileges are needed to use the attrlist list command. Examples dcecp> attrlist list {{a b} {c d}} a c dcecp> attrlist modify Removes and changes attributes and their values in an attribute list. The syntax is as follows: attrlist modify attrlist {[-add attribute_type attribute_values] [-change attribute_type attribute_values] [-remove attribute_type attribute_values]} The modify operation returns an attribute list with the input attributes modified as specified by the -add, -remove and -change options. New attributes can be added, or new values added to existing attributes with -add. Entire attributes or attribute values can be removed with -remove. The -change option removes all values from an existing attribute and replaces them with new values specified. Privileges Required No special privileges are needed to use the attrlist modify command. Examples dcecp> attrlist modify {{a b} {c d}} -add {{c e}} {a b} {c d e} dcecp> dcecp> attrlist modify {{a b} {c d e}} -remove {{c e}} {a b} {c d} dcecp> dcecp> attrlist modify {{a b} {c d e}} -change {{c f}} {a b} {c f} dcecp> attrlist operations Returns a list of the operations supported by the attrlist task object. The syntax is as follows: attrlist operations The list of available operations is in alphabetical order except for help and operations, which are listed last. Privileges Required No special privileges are needed to use the attrlist operations command. Examples dcecp> attrlist operations add getvalues list modify remove help operations dcecp> attrlist remove Removes attributes and their values from an attribute list. The syntax is as follows: attrlist remove attrlist -member attrlist The remove operation returns an attribute list after removing attribute types (and their values) specified as an argument to the required -member option. This command removes entire attributes only; to remove specific values, use the attrlist modify command. Privileges Required No special privileges are needed to use the attrlist remove command. Examples dcecp> attrlist remove {{a b} {c d} {e f} {g h}} -member {e g} {a b} {c d} dcecp> RELATED INFORMATION
Commands: dcecp(1m). attrlist(1m)
All times are GMT -4. The time now is 07:02 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy