10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Hello All,
I have data like this in a column.
0
1
2
3
0
3
4
5
6
0
1
2
3
etc. where 0 identifies the start of a pattern in my data.
So I need the output like below using either awk/sed.
0 1 (2 Replies)
Discussion started by: ks_reddy
2 Replies
2. Shell Programming and Scripting
I have a XML in which <Amt Ccy="EUR">3.1</Amt> tag repeats. This is under another tag <Main>. I need to sum all the values of <Amt Ccy=""> (Ccy may vary) coming under <Main> using awk and or sed command.
can some help?
Sample looks like below
<root>
<Main>
... (6 Replies)
Discussion started by: bk_12345
6 Replies
3. Shell Programming and Scripting
Dear All,
I have a below one column data.(example)
Col1
1
2
.
.
25
8
9
25
1
2
.
.
25
Where each entry(row) is a number from 1-25, but in place whereever mentioned with . we have all the entries 1-25, but some places where ever no . like in 8 9 25 I have only 3 entries.
No I... (14 Replies)
Discussion started by: ks_reddy
14 Replies
4. Shell Programming and Scripting
Sed replace using same pattern repeating multiple times in a line
I have text like below in a file:
I am trying to replace the above line to following
How can I acheive this?
I am able to do it if the occurrence is for 1 time:
But If I try like below
I am getting like this:
I have to... (4 Replies)
Discussion started by: sol_nov
4 Replies
5. UNIX for Dummies Questions & Answers
Hi,
I have catenated multiple output files (from a monte carlo run) into one big output file. Each individual file has it's own two line header. So when I catenate, there are multiple two line headers (of the same wording) within the big file. How do I use the sed command to search for the... (1 Reply)
Discussion started by: rebazon
1 Replies
6. UNIX for Dummies Questions & Answers
Hi All
I'm still on my slow and painful self teach learning experience with SED.
My latest issue is getting my head around how best to do the following.
I have a file that's created using iwlist that I want to chop up into paragraphs then only keep the ones I see as potential threats.
I... (3 Replies)
Discussion started by: Bashingaway
3 Replies
7. Shell Programming and Scripting
Hi,
I have an sqlplus output file using the character ';' as a delimiter and I would like to replace the fields without datas (i.e delimited by ';;') by ';0;'
Example: my sqlplus output:
11;22;33;44;;;77;;
What I would like to have:
11;22;33;44;0;0;77;0;
Thanks in advance for your... (2 Replies)
Discussion started by: popesk
2 Replies
8. Shell Programming and Scripting
Hi all,
I'm learning sed (and regular expressions) - My first little program is to replace 3 numbers in a row with 'XXX'
This is what I am trying:
echo '511' | sed 's/{3}/XXX/'
Here is the output:
defunct-macbook-pro:~ defunct$ echo '511' | sed 's/{3}/XXX/'
511For some reason, it doesnt... (2 Replies)
Discussion started by: Defunct
2 Replies
9. Shell Programming and Scripting
I have a text file and every line ends in
|^
|^^
|^^^
|^^^^
I need to use sed to make all lines end it
|^
regardless of the amount of carrots.
The code i was using is:
cat FILE | sed 's/\^\^\^/\^/g'
But then they threw that curveball at me. Also is there a way to... (2 Replies)
Discussion started by: insania
2 Replies
10. UNIX for Advanced & Expert Users
hi,
I need to write a command with sed to find all the lines in a file that contain patterns of three or more characters that repeat once and put them inside perenthezes. I cannot tell sed what pattern to look for. it should find repeated patterns automatically.
example:... (1 Reply)
Discussion started by: metalwarrior
1 Replies
textutil::repeat(n) Text and string utilities, macro processing textutil::repeat(n)
__________________________________________________________________________________________________________________________________________________
NAME
textutil::repeat - Procedures to repeat strings.
SYNOPSIS
package require Tcl 8.2
package require textutil::repeat ?0.7?
::textutil::repeat::strRepeat text num
::textutil::repeat::blank num
_________________________________________________________________
DESCRIPTION
The package textutil::repeat provides commands to generate long strings by repeating a shorter string many times.
The complete set of procedures is described below.
::textutil::repeat::strRepeat text num
This command returns a string containing the text repeated num times. The repetitions are joined without characters between them. A
value of num <= 0 causes the command to return an empty string.
Note: If the Tcl core the package is loaded in provides the command string repeat then this command will be implemented in its
terms, for maximum possible speed. Otherwise a fast implementation in Tcl will be used.
::textutil::repeat::blank num
A convenience command. Returns a string of num spaces.
BUGS, IDEAS, FEEDBACK
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category textutil
of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for
either package and/or documentation.
SEE ALSO
regexp(n), split(n), string(n)
KEYWORDS
blanks, repetition, string
textutil 0.7.1 textutil::repeat(n)