If we assume that each line between the {} container is an XML document then What I want to remove the newline character from all lines within each container to have one XMDL document per line I wrote a bit of sed after trawling the web:
e.g.
#!/bin/sed -nf
H
/}/ {
x
s/\n//g
p... (3 Replies)
Hi,
I have the following XML not well-indented code:
<hallo
>this is a line
</hallo>
So I need to remove the newline.
This syntax finds what I need to correct, but I don't know how to remove the newline after my pattern:
sed 's/<.*$/&/'
How can I subtract the newline after my... (1 Reply)
Hi all,
I have a logfile which has lines as following:
DOMAIN\username,Deposit,DOMAIN\ServiceAccountName,25/03/2010,00:10,\\SERVER,,,,/Ts=4BAA9BD6,,,10.00,10.03
It's a log of a pcounter print charge system.
I need to only have the first part (domain\username) and the second last... (4 Replies)
I have a file (test.dat) which contains data like this
459|199811047|a |b |shan
kar|ooty|
460|199811047|a |bv |gur
u|cbe|
but I need it like:
459|199811047|a |b |shankar|ooty|
460|199811047|a |b |guru|cbe|
While reading the data from this file, I don't want to remove newline from the end of... (4 Replies)
I'd like to remove (do a pattern or precise replacement - this I can handle in SED using Regex )
---AFTER THE 1ST Occurrence ( i.e. on the 2nd occurrence - from the 2nd to fourth occurance ) of a specific string : type 1
-- After the 1st occurrence of 1 string1 till the 1st occurrence of... (4 Replies)
I have a file:
575G /local/mis/SYBDUMP
I want to remove the G, K, M or T so I can use $1 in awk or sed to do math.
I want to end up with a file containing:
575 /local/mis/SYBDUMP
It should not matter how small or large the numeric numbers are so if 2, 3, 4, or 5 digits etc I want to see... (9 Replies)
Dear All,
Can anyone help to remove the , bewteen "" in a string by using sed or awk?
e.g.
input : 1,4,5,"abcdef","we,are,here",4,"help hep"
output:1,4,5,"abcdef","wearehere",4,"help hep"
Thanks,
Mimi (5 Replies)
Below i am trying to remove "/" and "r" from the output, so i need output as:
hdiskpower3
hdisk0
hdisk1
#inq | grep 5773 | awk '{print $1}' | sed 's/dev//g' | awk -F"/" '{$1=$1}1'
.....................................................//rhdiskpower0
//rhdiskpower1
//rhdiskpower2... (3 Replies)
Greetings Experts,
I am in AIX; I have a file generated through awk after processing the input files. Now I need to replace or remove the new-line characters on all lines that doesn't have a ; which is the last character on the line. I tried to use sed 's/\n/ /g' After checking through the... (6 Replies)
Discussion started by: chill3chee
6 Replies
LEARN ABOUT ULTRIX
edit
ex(1) General Commands Manual ex(1)Name
ex, edit - text editor
Syntax
ex [ - ] [ -v ] [ -x ] [ -t tag ] [ -r ] [ +command ] [ -l ] name...
edit [ ex options ]
Description
The editor is the root of a family of editors: and The editor is a superset of with the most notable extension being a display-editing
facility. Display-based editing is the focus of
The name argument indicates the files to be edited.
Options
- Suppresses all interactive-user feedback. This option is useful in processing editor scripts in command files.
-v Equivalent to using rather than
-t Equivalent to an initial tag command, that is, editing the file containing the tag and positioning the editor at its definition.
-r Used to recover after an editor or system crash. It recovers by retrieving the last saved version of the named file. If no file is
specified, it displays a list of saved files.
-R Sets the read-only option at the start.
+command
Indicates that the editor should begin by executing the specified command. If the command is omitted, it defaults to $, positioning
the editor at the last line of the first file, initially. Other useful commands here are scanning patterns of the form +/pattern or
line numbers.
-l Sets up for LISP. That is, it sets the showmatch and lisp options. The -x option is available only if the Encryption layered product
is installed.
-x Causes to prompt for a key. The key is used to encrypt and decrypt the contents of the file. If the file contents have been encrypted
with one key, you must use the same key to decrypt them.
Restrictions
The command causes all marks to be lost on lines changed and then restored if the marked lines were changed.
The command does not clear the buffer modified condition.
The z command prints a number of logical rather than physical lines. More than a screenful of output may result if long lines are present.
File input/output errors do not print a name if the command line minus sign (-) option is used.
There is no easy way to do a single scan ignoring case.
The editor does not warn you if you place text in named buffers and do not use it before exiting the editor.
Null characters are discarded from input files, and cannot appear in output files.
Files
/usr/lib/ex?.?recover recover command
/usr/lib/ex?.?preserve preserve command
/etc/termcap terminal capabilities
~/.exrc editor startup file
/tmp/Exnnnnn editor temporary
/tmp/Rxnnnnn named buffer temporary
/usr/preserve preservation directory
See Alsoawk(1), ed(1), grep(1), sed(1), vi(1), termcap(5), environ(7)
"Edit: A Tutorial" and the "Ex Reference Manual" in the
Supplementary Documents, Volume 1: General User
ex(1)