写了个脚本自动生成pdf上传github受不了每次相同的commit决定使用脚本传参
简单好用使用加粗方法,更复杂的可以参考下面两个详解。
如何给shell脚本传参数
http://jingyan.baidu.com/article/b24f6c822645b786bfe5daff.html
#!/usr/bin/zsh xelatex -synctex=1 -interaction=nonstopmode "leetcode-cpp".tex > makepdf.log cd ../leetcode-cpp-pdf git status git add . git commit -m $1 git push origin master cd ../leetcode-cpp git status git add . git commit -m $1 git push origin master
shell 脚本中传递参数3种方法的比较
http://blog.csdn.net/yangzhongxuan/article/details/7002739
shell基础学习第二十篇-向脚本传递参数
http://bbs.chinaunix.net/thread-1823335-1-1.html
时间: 2024-10-16 11:19:31