Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This seems like a simple problem but I couldnt find a ready solution. I need to generate a string of characters "."s as a variable.

ie, IN my bash script, I need to generate a string of length 15 ...............

I need to do so variably. I tried using this as a base (from: http://www.unix.com/shell-programming-scripting/46584-repeat-character-printf.html)

for i in {1..100};do printf "%s" "#";done;printf "\n"

But how do i get the 100 to be a vairbale?

share|improve this question

8 Answers

up vote 0 down vote accepted

Just put your code into $( )

myvar=$(for i in {1..100};do printf "%s" "#";done;printf "\n")
share|improve this answer

You can get as many NULL bytes as you want from /dev/zero. You can then turn these into other characters. The following prints 16 lowercase a's

head -c 16 < /dev/zero | tr '\0' '\141'
share|improve this answer

On most systems, you could get away with a simple

N=100
myvar=`perl -e "print '.' x $N;"`
share|improve this answer
len=100 ch='#'
printf '%*s' "$len" ' ' | tr ' ' "$ch"
share|improve this answer

The solution without loops:

N=100
myvar=`seq 1 $N | sed 's/.*/./' | tr -d '\n'`
share|improve this answer

You can use C-style for loops in Bash:

num=100
string=$(for ((i=1; i<=$num; i++));do printf "%s" "#";done;printf "\n")

Or without a loop, using printf without using any externals such as sed or tr:

num=100
printf -v string "%*s" $num ' ' '' $'\n'
string=${string// /#}
share|improve this answer

I don't know if I got the question.. maybe you can do it like this

function myPrint { for i in `seq 1 $2`; do echo -n $1; done }; myPrint <char> <number>
share|improve this answer
Not exactly... I want the 100 to be a variable. I modified the above to be this: function myPrint { for i in seq 1 $1; do echo -n '.'; done }; BUT I already have a $1 coming in from the command line. How can I use this argument? – RubiCon10 Jul 9 '10 at 11:02
mh I didn't understand.. do you want to use in this function as first argument the first argument of the script that contains the function? if this just try "myPrint $1" in your script.. – Francesco Jul 9 '10 at 11:09

When I have to create a string that contains $x repetitions of a known character with $x below a constant value, I use this idiom:

base='....................'
# 0 <= $x <= ${#base}
x=5
expr "x$base" : "x\(.\{$x\}\)"    # Will output '\n' too

Output:

.....
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.