for循环不能在shell脚本中工作

时间:2014-05-05 10:59:26

标签: linux shell loops for-loop

我一直在shell脚本中使用以下格式来表示“for循环”:

示例:

for i in {11001..110039}  
do
cp /home/usr/BB${i}  /home/usr/

现在,我收到以下错误:

/home/usr/BB{11001..11039} does not exist

它应该考虑所有文件BB11001到BB11039,它总是像这样工作,现在我不知道为什么我得到这个错误。 有什么帮助吗?

2 个答案:

答案 0 :(得分:2)

您可能正在使用/ bin / sh而不是/ bin / bash。

编辑#1(PoC):

$ bash --version
GNU bash, version 4.2.45(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>

This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

$ cat t.sh 
#!/bin/bash

for i in {1..5}
do
echo $i
done
$ ./t.sh
1
2
3
4
5
$

用/ bin / sh:

$ cat t.sh 
#!/bin/sh

for i in {1..5}
do
echo $i
done
$ ./t.sh
{1..5}
$

答案 1 :(得分:1)

语法应为:

for i in {11001..110039}; 做 cp / home / usr / BB $ {i} / home / usr /; 完成