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
CATEGORY
Text processing
textutil 0.7.1 textutil::repeat(n)
Check Out this Related Man Page
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)
This is supposed to be simple to do but I am having a hard time trying to yank 1 line (yy) but creating from it 100 lines. I can do yy then keep hitting . to repeat but it doesn't make sense. I may want to create 1000 lines from the one liner.
yy then 99 p doesn't work....
Thanks.
I was... (5 Replies)
Any idea to repeat an action to all the lines in vi...
suppose i want to delete the first word from all the lines in VI .. how would i do it ?
in general i am also looking for a way to apply a action to all the lines in VI . (6 Replies)
Using !! or !x we can repeat previous command. If I want to repeat the command with something changed, what do I do? Say,
The prev. command
cat a.txt | grep "pp" > a.out
The new command
cat b.txt | grep "pp" > b.out
Is there a short way? (4 Replies)
I need to repeat this command on a configurable interval:
igal -a -r -U -w 6
I tried this:
#!/bin/bash
igal -a -r -U -w 6
sleep 30
Just a guess that it MIGHT work.
Can anyone point me in the right direction?
-R (6 Replies)
It's all in the subject. I try to figure out how to repeat a character a number of time with printf.
For example to draw a line in a script output.
Thks (13 Replies)
Is there a way to repeat the output of the last command for filtering without running the command again? All I could think of was to copy all the data to a text file and process it that way, is there another way? Like say I want to grep server.server.lan from a dtrace that was pages long after I... (5 Replies)
I have a text file where I need to find the string = ST*850*
This string is repetaed several times in the file, so I need to know how many times it appears in the file, this is the text files:
ISA*00* *00* *08*925485USNR *ZZ*IMSALADDERSP... (13 Replies)
I have a CSV file like this
#product
laptop,notebook,ipad
hp,acer,apple
dell,lenovo,sony
#region
city,country
newyork,US
#Time
month,year
jan,2011
feb,2012
---------------------------------
I want to store this data seperately in two files with different names:
First file... (8 Replies)
How to repeat the execution of a simple command like the following for 1 sec ?
echo Hi
The completion time for the command is not known, but we need to calculate the number of times this commans executes successfully within 1 sec.
Thanks
Kumarjit (5 Replies)
Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!
1. How can i use loop to repeat task.
2.shirt=15
black=13.50
echo "how many shirt you want"
read num
echo
echo "Please enter a choice"
echo "1 ---> normal... (5 Replies)
Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!
1. The problem statement, all variables and given/known data:
My goal to find how many requests in 14 days from weblog server. I know to cat a weblog file to wc -l to find the... (8 Replies)
Hi all!
I have 10.000 files having generally this format:
text text text
text num text num text num
text text text GAP number text text
text num text num text num RMS num
text num text num text num
...
what I want is to copy the files if the GAP number is lower than a value e.g. <100... (5 Replies)
I am getting this:
cmccabe@DTV-A5211QLM:~$ cat ~/.bashrc
Command 'cat' is available in '/bin/cat'
The command could not be located because '/bin' is not included in the PATH environment variable.
cat: command not found
cmccabe@DTV-A5211QLM:~$ nano .bashrc
Command 'nano' is available in... (9 Replies)
In the file below I am trying to count the given repeats of A,T,C,G in each string of letters. Each sequence is below the > and it is possible for a string of repeats to wrap from the line above. For example, in the first line the last letter is a T and the next lines has 3 more. I think the below... (10 Replies)
Hello:
I have some text output, on SunOS 5.11 platform using KSH:
I am trying to parse out each string within the () for each line.
I tried, as example:
perl -lanF"" -e 'print "$F $F $F $F $F $F"'
But for some reason, the output gets all garbled after the the first fields.... (8 Replies)