红联Linux门户
Linux帮助

Linux Bash:重复执行一个命令N次

发布时间:2016-06-18 15:48:23来源:topspeedsnail.com作者:斗大的熊猫

方法一:

$ for n in {1..7}; do echo "Hello World!"; done

Linux Bash:重复执行一个命令N次


方法二:

在~/.bashrc文件中创建一个run函数:
function run() {
number=$1
shift
for n in $(seq $number); do
$@
done
}

使生效:

# source ~/.bashrc

使用:
# run 7 echo "Hello World!"

Linux Bash:重复执行一个命令N次


本文永久更新地址:http://www.linuxdiyf.com/linux/21633.html