
Shell
kuangben2000
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Mac 下 C# 启动进程执行指令,命令参数与 windows 不同,需要全路径
==============Mac 执行 Shell 脚本使用public static void FunctionA(){#if UNITY_EDITOR_WIN string filePath = Application.dataPath + "/../../aaa.bat"; System.Diagnostics.Process proc = System.Diagnostics.Process.Start(filePath);#elif UNITY_EDITOR_OSX...原创 2020-07-08 14:06:48 · 1140 阅读 · 0 评论 -
shell命令行传参个数大于9个的参数写法
shell命令行传参个数大于9个的参数写法https://blog.csdn.net/weixin_33965305/article/details/91548810$10 $11 $12等都会被解析为 $1方法是 ${10} ${11} 用一对花括号把参数引起来转载于:https://blog.51cto.com/khaozi/1847310...转载 2020-03-09 14:14:15 · 917 阅读 · 0 评论 -
学习笔记: shell 中的 set -e , set +e 用法
学习笔记: shell 中的 set -e , set +e 用法https://blog.csdn.net/xiaofei125145/article/details/39345331/set -e # Exit the script if an error happens脚本Aset +e # don't bail out of bash script if ccache do...转载 2020-02-19 10:30:10 · 1620 阅读 · 0 评论 -
shell 脚本中set-x 与set+x的区别
shell 脚本中set-x 与set+x的区别https://blog.csdn.net/weixin_38883338/article/details/86421110set -x与set +x指令用于脚本调试set是把它下面的命令打印到屏幕set -x 开启set +x关闭set -o 查看...转载 2020-02-19 10:28:53 · 330 阅读 · 0 评论