有時候需要重復執行命令,直到成功為止,比如下載文件,直到下載成功才繼續執行后面的語句。
代碼如下:
#########################################################################
# File Name: repeat_until_success.sh
# Author: haohao.qiang
# mail: codenutter@foxmail.com
# Created Time: 四 5/18 13:51:54 2017
#########################################################################
#!/bin/bash
# 定義repeat函數,執行命令,直到成功
function repeat()
{
while true
do
$@ && return
done
}
# 調用repeat函數執行命令
repeat wget http://www.baidu.com/index.html