Re: print N times

"'Ruud H.G. van Tol' [email protected] [sed-users]" <[email protected]>
Newsgroups gmane.editors.sed.user
Message-ID <[email protected]>
On 2015-07-05 16:16, Scott Walters [email protected] [sed-users] 
wrote:

> A  theoretical question.echo  abcd |  sed 'p;p;p'      prints the word "abcd" 4 times.Is there a simpler way to print a word N times ( N=large number) by NOT using the "p" command N-1 times.it has to be simple like we use in a regular for loop.


$ perl -E'say $ARGV[0] for 1..$ARGV[1]' abcd 2
abcd
abcd

$ echo "abcd 2
nxyz 3" |perl -anE'say $F[0] for 1..$F[1]'
abcd
abcd
xyz
xyz
xyz

-- 
Ruud
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.