Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

lrepeat(3tcl) [debian man page]

lrepeat(3tcl)						       Tcl Built-In Commands						     lrepeat(3tcl)

__________________________________________________________________________________________________________________________________________________

NAME
lrepeat - Build a list by repeating elements SYNOPSIS
lrepeat number element1 ?element2 element3 ...? _________________________________________________________________ DESCRIPTION
The lrepeat command creates a list of size number * number of elements by repeating number times the sequence of elements element1 element2 .... number must be a positive integer, elementn can be any Tcl value. Note that lrepeat 1 arg ... is identical to list arg ..., though the arg is required with lrepeat. EXAMPLES
lrepeat 3 a -> a a a lrepeat 3 [lrepeat 3 0] -> {0 0 0} {0 0 0} {0 0 0} lrepeat 3 a b c -> a b c a b c a b c lrepeat 3 [lrepeat 2 a] b c -> {a a} b c {a a} b c {a a} b c SEE ALSO
list(3tcl), lappend(3tcl), linsert(3tcl), llength(3tcl), lset(3tcl) KEYWORDS
element, index, list Tcl 8.5 lrepeat(3tcl)

Check Out this Related Man Page

list(3tcl)						       Tcl Built-In Commands							list(3tcl)

__________________________________________________________________________________________________________________________________________________

NAME
list - Create a list SYNOPSIS
list ?arg arg ...? _________________________________________________________________ DESCRIPTION
This command returns a list comprised of all the args, or an empty string if no args are specified. Braces and backslashes get added as necessary, so that the lindex command may be used on the result to re-extract the original arguments, and also so that eval may be used to execute the resulting list, with arg1 comprising the command's name and the other args comprising its arguments. List produces slightly different results than concat: concat removes one level of grouping before forming the list, while list works directly from the original arguments. EXAMPLE
The command list a b "c d e " " f {g h}" will return a b {c d e } { f {g h}} while concat with the same arguments will return a b c d e f {g h} SEE ALSO
lappend(3tcl), lindex(3tcl), linsert(3tcl), llength(3tcl), lrange(3tcl), lrepeat(3tcl), lreplace(3tcl), lsearch(3tcl), lset(3tcl), | lsort(3tcl) KEYWORDS
element, list Tcl list(3tcl)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Remove repeating pattern from beginning of file names.

I want a shell script that will traverse a file system starting at specific path. And look at all file names for repeating sequences of and remove them from the file name. The portion of the name that gets removed has to be a repeating sequence of the same characters. So the script would... (3 Replies)
Discussion started by: z399y
3 Replies

2. Shell Programming and Scripting

End of each line count the values in the file

Hi, How to find the end of character in the file. My requirement should be as below.1 is repeating 1 time ,2 is repeating 3 times... type 1: 1 type 2: 3 type 3: 2 9f680177|20077337258|0|0|0|1000004647916|1 9f680177|20077337258|0|0|0|1000004647916|2 9f680177 20077337258 0 0 0... (5 Replies)
Discussion started by: bmk
5 Replies

3. UNIX for Beginners Questions & Answers

Count occurences of the word without it repeating

Hi, I would like to count the number of ALA occurences without having them to be repeated. In the script I have written now it has 40 repetitions of ALA but it has to be 8. ALA is chosen as one of the 20 values it can have when the script asks for the input of AAA, which for this example is chosen... (7 Replies)
Discussion started by: Aurimas
7 Replies

4. Shell Programming and Scripting

--Parsing out strings for repeating delimiters for everyline

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)
Discussion started by: gilgamesh
8 Replies