Bash循环遍历元素列表

时间:2014-01-17 15:40:31

标签: bash list loops

我有一个我使用的脚本,看起来像这样

cd ~/.vim/bundle/supertab
git pull
cd ~/.vim/bundle/syntastic
git pull
cd ~/.vim/bundle/vim-alternate
git pull
cd ~/.vim/bundle/vim-easymotion
git pull
cd ~/.vim/bundle/vim-matchit
git pull
cd ~/.vim/bundle/vim-togglemouse
git pull

我想更新它,以便循环遍历列表,这样我就可以在不重复显式代码的情况下获得一些改进的输出。我非常擅长shell脚本,并想知道是否有可能有一个bash脚本,如果它在C中完成就会运行这样的东西

vector<string> v{"supertab" , "syntastic", "vim-alternate", 
                 "vim-easymotion", "vim-matchit", "vim-togglemouse"};
for (string it : v) {
    system("cd ~/.vim/bundle/" + it);
    cout << it << ": ";
    system("git pull");
}

2 个答案:

答案 0 :(得分:3)

你在哪里:

 cd ~/.vim/bundle
 for f in supertab syntastic vim-alternate vim-easymotion vim-matchit vim-togglemouse
 do
    cd $f
    git pull
    cd ..
 done

答案 1 :(得分:3)

您可以在Bash中使用数组,如下所示:

rootDir="~/.vim/bundle/"
runDir=$(pwd)
declare -a lstDir
lstDir=("supertab" "syntastic" "vim-alternate" "vim-easymotion" "vim-matchit" "vim-togglemouse")

for file in "${lstDir[@]}"; do
    cd "$rootDir/$file" && git pull
done

cd "$runDir"