Differences between revisions 1 and 24 (spanning 23 versions)
Revision 1 as of 2007-05-02 23:04:00
Size: 1899
Editor: redondos
Comment:
Revision 24 as of 2014-05-22 02:20:17
Size: 6154
Editor: ormaaj
Comment: Work on examples
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
[[Anchor(faq18)]] <<Anchor(faq18)>>
Line 5: Line 5:
Bash version 4 allows zero-padding and ranges in its BraceExpansion:

{{{
    # Bash 4 / zsh
    for i in {01..10}; do
        ...
}}}

All of the other solutions on this page will assume Bash earlier than 4.0, or a non-Bash shell.
Line 7: Line 17:
    # Bash / ksh / zsh
Line 9: Line 20:
        echo $i         echo "$i"
Line 13: Line 24:
Output: In Bash 3, you can use ranges inside brace expansion (but not zero-padding). Thus, the same thing can be accomplished more concisely like this:
Line 15: Line 27:
00
01
02
03
[...]
    # Bash 3
    for i in 0{1..9} 10
    do
        echo "$i"
    done
Line 22: Line 34:
This gets tedious for large sequences, but there are other ways, too. If the command {{{seq}}} is available, you can use it as follows: Another example, for output of 0000 to 0034:

{{{
    # Bash 3
    for i in {000{0..9},00{10..34}}
    do
        echo "$i"
    done

    # using the outer brace instead of just adding them one next to the other
    # allows to use the expansion, for instance, like this:
    wget 'http://foo.com/adir/thepages'{000{0..9},00{10..34}}'.html'
}}}

This gets tedious for large sequences, but there are other ways, too. If you have the {{{printf}}} command (which is a Bash builtin, and is also POSIX standard), it can be used to format a number:
{{{
    # Bash / ksh93 / zsh
    for ((i = 1; i <= 10; i++)); do
        i=$(printf %02d "$i")
        ...
    done
}}}

Also, unlike the C library `printf`, since {{{printf}}} will implicitly loop if given more arguments than format specifiers, you can simplify this enormously:
{{{
   # Bash 3
   printf '%03d\n' {1..300}
}}}

If you don't know in advance what the starting and ending values are:
{{{
   # Bash 3
   # start and end are variables containing integers
   eval "printf '%03d\n' {$start..$end}"
}}}

The `eval` is required in Bash because for each command it performs an initial pass of evaluation, going through each word to process brace expansions prior to any other evaluation step. The traditional Csh implementation, which all other applicable shells follow, insert the brace expansion pass sometime between the processing of other expansions and pathname expansion, thus parameter expansion has already been performed by the time words are scanned for brace expansion. There are various pros and cons to Bash's implementation, this being probably the most frequently cited drawback. Given how messy that `eval` solution is, please give serious thought to using a `for` or `while` loop with shell arithmetic instead.

The ksh93 method for specifying field width for sequence expansion is to add a (limited) `printf` format string to the syntax, which is used to format each expanded word. This is somewhat more powerful, but unfortunately incompatible with bash, and ksh does not understand Bash's field padding scheme:

{{{
    #ksh93
    echo {0..10..2%02d}
}}}

ksh93 also has a variable attribute that specifies a field with to pad with leading zeros whenever the variable is referenced. The concept is similar to other attributes supported by Bash such as case modification. Note that ksh never interprets octal literals.

{{{
    # ksh93 / mksh / zsh
    $ typeset -Z3 i=4
    $ echo $i
    004
}}}

If the command {{{seq(1)}}} is available (it's part of GNU sh-utils/coreutils), you can use it as follows:
Line 28: Line 94:
Line 33: Line 98:
If you have the {{{printf}}} command (which is a Bash builtin, and is also POSIX standard), it can be used to format a number, too:
Combining {{{printf}}} with {{{seq(1)}}}, you can do things like this:
Line 36: Line 100:
    for ((i=1; i<=10; i++))
    do
        printf "%02d " "$i"
    done
   # POSIX shell, GNU utilities
   printf "%03d\n" $(seq 300)
Line 42: Line 104:
The KornShell and KornShell93 have the {{{typeset}}} command to specify the number of leading zeros: (That may be helpful if you are not using Bash, but you have `seq(1)`, and your version of {{{seq(1)}}} lacks {{{printf}}}-style format specifiers. That's a pretty odd set of restrictions, but I suppose it's theoretically possible. Since `seq` is a nonstandard external tool, it's good to keep your options open.)
Line 44: Line 106:
Be warned however that using `seq` might be considered bad style; it's even mentioned in [[BashGuide/Practices#Don.27t_Ever_Do_These|Don't Ever Do These]].

Some BSD-derived systems have `jot(1)` instead of `seq(1)`. In accordance with the glorious tradition of Unix, it has a completely incompatible syntax:
Line 45: Line 110:
    $ typeset -Z3 i=4
    $ echo $i
    004
   # POSIX shell, OpenBSD et al.
   printf "%02d\n" $(jot 10 1)

   # Bourne shell, OpenBSD (at least)
   jot -w %02d 10 1
Line 50: Line 117:
Finally, the following example works with any BourneShell derived shell to zero-pad each line to three bytes:
Finally, the following example works with any BourneShell derived shell (which also has `expr` and `sed`) to zero-pad each line to three bytes:
Line 53: Line 119:
i=0
while test $i -le 10
do
    echo "00$i"
    i=`expr $i + 1`
done |
    sed 's/.*\(...\)$/\1/g'
   # Bourne
   
i=0
   while test $i -le 10
   do
    echo "00$i"
       i=`expr $i + 1`
   done |
    sed 's/.*\(...\)$/\1/g'
Line 62: Line 129:
In this example, the number of '.' inside the parentheses in the {{{sed}}} statement determins how many total bytes from the {{{echo}}} command (at the end of each line) will be kept and printed. In this example, the number of '.' inside the parentheses in the {{{sed}}} command determines how many total bytes from the {{{echo}}} command (at the end of each line) will be kept and printed.
Line 64: Line 131:
One more addendum: in Bash 3, you can use: But if you're going to rely on an external Unix command, you might as well just do the whole thing in `awk` in the first place:
Line 66: Line 133:
printf "%03d \n" {1..300}    # Bourne
   # count variable contains an integer
   awk -v count="$count" 'BEGIN {for (i=1;i<=count;i++) {printf("%03d\n",i)} }'

   # Bourne, with Solaris's decrepit and useless awk:
   awk "BEGIN {for (i=1;i<=$count;i++) {printf(\"%03d\\n\",i)} }"
Line 69: Line 141:
Which is slightly easier in some cases. ----
Line 71: Line 143:
Also you can use the {{{printf}}} command with xargs and wget to fetch files:
Now, since the number one reason this question is asked is for downloading images in bulk, you can use the examples above with {{{xargs(1)}}} and {{{wget(1)}}} to fetch files:
Line 74: Line 145:
printf "%03d \n" {$START..$END} | xargs -i% wget $LOCATION/%    almost any example above | xargs -i% wget $LOCATION/%
Line 77: Line 148:
Sometimes a good solution. The `xargs -i%` will read a line of input at a time, and replace the `%` at the end of the command with the input.
Line 79: Line 150:
I found that on bash 2 you can nest seq in back ticks and this will work as well. Or, a simpler example using a `for` loop:
{{{
   # Bash 3
   for i in {1..100}; do
      wget "$prefix$(printf %03d $i).jpg"
      sleep 5
   done
}}}
Line 81: Line 159:
Or, avoiding the subshells (requires bash 3.1):
Line 82: Line 161:
printf "%03d \n" `seq 300`    # Bash 3.1
   for i in {1..100}; do
      printf -v n %03d $i
      wget "$prefix$n.jpg"
      sleep 5
   done
Line 84: Line 168:

----
CategoryShell

How can I use numbers with leading zeros in a loop, e.g. 01, 02?

As always, there are different ways to solve the problem, each with its own advantages and disadvantages.

Bash version 4 allows zero-padding and ranges in its BraceExpansion:

    # Bash 4 / zsh
    for i in {01..10}; do
        ...

All of the other solutions on this page will assume Bash earlier than 4.0, or a non-Bash shell.

If there are not many numbers, BraceExpansion can be used:

    # Bash / ksh / zsh
    for i in 0{1,2,3,4,5,6,7,8,9} 10
    do
        echo "$i"
    done

In Bash 3, you can use ranges inside brace expansion (but not zero-padding). Thus, the same thing can be accomplished more concisely like this:

    # Bash 3
    for i in 0{1..9} 10
    do
        echo "$i"
    done

Another example, for output of 0000 to 0034:

    # Bash 3
    for i in {000{0..9},00{10..34}}
    do
        echo "$i"
    done

    # using the outer brace instead of just adding them one next to the other
    # allows to use the expansion, for instance, like this:
    wget 'http://foo.com/adir/thepages'{000{0..9},00{10..34}}'.html'

This gets tedious for large sequences, but there are other ways, too. If you have the printf command (which is a Bash builtin, and is also POSIX standard), it can be used to format a number:

    # Bash / ksh93 / zsh
    for ((i = 1; i <= 10; i++)); do
        i=$(printf %02d "$i")
        ...
    done

Also, unlike the C library printf, since printf will implicitly loop if given more arguments than format specifiers, you can simplify this enormously:

   # Bash 3
   printf '%03d\n' {1..300}

If you don't know in advance what the starting and ending values are:

   # Bash 3
   # start and end are variables containing integers
   eval "printf '%03d\n' {$start..$end}"

The eval is required in Bash because for each command it performs an initial pass of evaluation, going through each word to process brace expansions prior to any other evaluation step. The traditional Csh implementation, which all other applicable shells follow, insert the brace expansion pass sometime between the processing of other expansions and pathname expansion, thus parameter expansion has already been performed by the time words are scanned for brace expansion. There are various pros and cons to Bash's implementation, this being probably the most frequently cited drawback. Given how messy that eval solution is, please give serious thought to using a for or while loop with shell arithmetic instead.

The ksh93 method for specifying field width for sequence expansion is to add a (limited) printf format string to the syntax, which is used to format each expanded word. This is somewhat more powerful, but unfortunately incompatible with bash, and ksh does not understand Bash's field padding scheme:

    #ksh93
    echo {0..10..2%02d}

ksh93 also has a variable attribute that specifies a field with to pad with leading zeros whenever the variable is referenced. The concept is similar to other attributes supported by Bash such as case modification. Note that ksh never interprets octal literals.

    # ksh93 / mksh / zsh
    $ typeset -Z3 i=4
    $ echo $i
    004

If the command seq(1) is available (it's part of GNU sh-utils/coreutils), you can use it as follows:

    seq -w 1 10

or, for arbitrary numbers of leading zeros (here: 3):

    seq -f "%03g" 1 10

Combining printf with seq(1), you can do things like this:

   # POSIX shell, GNU utilities
   printf "%03d\n" $(seq 300)

(That may be helpful if you are not using Bash, but you have seq(1), and your version of seq(1) lacks printf-style format specifiers. That's a pretty odd set of restrictions, but I suppose it's theoretically possible. Since seq is a nonstandard external tool, it's good to keep your options open.)

Be warned however that using seq might be considered bad style; it's even mentioned in Don't Ever Do These.

Some BSD-derived systems have jot(1) instead of seq(1). In accordance with the glorious tradition of Unix, it has a completely incompatible syntax:

   # POSIX shell, OpenBSD et al.
   printf "%02d\n" $(jot 10 1)

   # Bourne shell, OpenBSD (at least)
   jot -w %02d 10 1

Finally, the following example works with any BourneShell derived shell (which also has expr and sed) to zero-pad each line to three bytes:

   # Bourne
   i=0
   while test $i -le 10
   do
       echo "00$i"
       i=`expr $i + 1`
   done |
       sed 's/.*\(...\)$/\1/g'

In this example, the number of '.' inside the parentheses in the sed command determines how many total bytes from the echo command (at the end of each line) will be kept and printed.

But if you're going to rely on an external Unix command, you might as well just do the whole thing in awk in the first place:

   # Bourne
   # count variable contains an integer
   awk -v count="$count" 'BEGIN {for (i=1;i<=count;i++) {printf("%03d\n",i)} }'

   # Bourne, with Solaris's decrepit and useless awk:
   awk "BEGIN {for (i=1;i<=$count;i++) {printf(\"%03d\\n\",i)} }"


Now, since the number one reason this question is asked is for downloading images in bulk, you can use the examples above with xargs(1) and wget(1) to fetch files:

   almost any example above | xargs -i% wget $LOCATION/%

The xargs -i% will read a line of input at a time, and replace the % at the end of the command with the input.

Or, a simpler example using a for loop:

   # Bash 3
   for i in {1..100}; do
      wget "$prefix$(printf %03d $i).jpg"
      sleep 5
   done

Or, avoiding the subshells (requires bash 3.1):

   # Bash 3.1
   for i in {1..100}; do
      printf -v n %03d $i
      wget "$prefix$n.jpg"
      sleep 5
   done


CategoryShell

BashFAQ/018 (last edited 2019-08-21 16:24:29 by GreyCat)