作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个我使用的脚本,看起来像这样
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"
关于Bash 遍历元素列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21189866/
我是一名优秀的程序员,十分优秀!