vote up 0 vote down star

My code

#!/bin/bash
for (( c=0; c<=1127; c++ ))
do
id = 9694 + c
if (id < 10000); then
	wget http://myurl.de/source/image/08_05_27_0${id}.jpg
else 
	wget http://myurl.de/source/image/08_05_27_${id}.jpg
fi
done

I only get

./get.sh: line 5: 10000: No such file or directory
--2009-05-06 11:20:36--  http://myurl.de/source/image/08_05_27_.jpg

without the number.

The corrected code:

#!/bin/bash
for (( c=0; c<=1127; c++ ))
do
id=$((9694+c))
if (id -lt 10000); then
    wget http://myurl.de/source/image/08_05_27_0${id}.jpg
else 
    wget http://myurl.de/source/image/08_05_27_${id}.jpg
fi
done

And even better:

for i in $(seq 9694 10821) ; do
    _U=`printf "http://myurl.de/source/image/08_05_27_%05d.jpg" $i`
    wget $_U 
done
flag

I hope albrecht-haag.de don't mind you scraping every image off their website ;-) – Eoin Campbell May 6 at 9:35
I work for him so I guess its okay. =) – ByteNirvana May 6 at 9:40
What is the question? – Manni May 6 at 12:04

4 Answers

vote up 4 vote down check

I'll opt for simpler solution

for i in $(seq 9694 10821) ; do
    _U=`printf "http://myurl.de/source/image/08_05_27_%05d.jpg" $i`
    wget $_U 
done
link|flag
does this add the leading 0 too? – ByteNirvana May 6 at 10:27
Yes. By using %05d as formating argument to printf, that causses printf to left-pad output with zeros – greg May 6 at 10:34
This is a better answer than the others (yes, shock horror, even mine :-). Upvoting. – paxdiablo May 6 at 10:42
Wow, this is very smart. In the end I did it differently but I accept this answer as the best. – ByteNirvana – ByteNirvana May 6 at 11:43
vote up 2 vote down

You are making a couple of mistakes with bash syntax, especially when dealing with arithmetic expressions.

  • You cannot put a space around the = sign when assigning to a variable.
  • In the assignment to "id", to invoke arithmetic evaluation, you need to use the $(( expression )) syntax.
  • For the "if" condition, you need double parentheses just like you're using with "for".

This should work:

#!/bin/bash
for (( c=0; c<=1127; c++ )); do
  id=$((9694 + c))
  if ((id < 10000)); then
    wget http://myurl.de/source/image/08_05_27_0${id}.jpg
  else
    wget http://myurl.de/source/image/08_05_27_${id}.jpg
  fi
done
link|flag
Why the downvote? – Ville Laurikari May 6 at 9:55
1  
good explanation. – bendin May 6 at 10:06
vote up 2 vote down

This is what you need.

#!/bin/bash
for (( c=0; c<=1127; c++ ))
do
    ((id = 9694 + c))
    if [[ id -lt 10000 ]] ; then
        wget http://myurl.de/source/image/08_05_27_0${id}.jpg
    else 
        wget http://myurl.de/source/image/08_05_27_${id}.jpg
    fi
done
link|flag
This won't work. Did you even try it? – Ville Laurikari May 6 at 9:50
Hmm, you've edited your answer, the (( )) were missing from around the assignment line in the original version. – Ville Laurikari May 6 at 9:57
Just to make it clear, the code is now fine and works. And I did cut'n'paste your original code, ran it, and it didn't work. – Ville Laurikari May 6 at 10:00
vote up 1 vote down

You need:

id=$((9694+c))
...
if [[ id < 10000 ]]; then
link|flag

Your Answer

Get an OpenID
or

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