Bash 循环访问元素列表



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

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");
}

你可以在 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"

您所在的位置:

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

相关内容

  • 没有找到相关文章

最新更新