shel脚本
Thomas_YiSaYa
这个作者很懒,什么都没留下…
展开
-
shell脚本 处理当前目录下文件
for file in ./CeleFile/* do if test -f $file then echo $file is file sleep 2 ./DeviceNoEncTool $file 0 & else echo $file 是dir fi done原创 2020-07-02 21:44:31 · 773 阅读 · 0 评论 -
shell脚本命令学习
经常要做一些重复的代码生成,文本的复制,需要写一些脚本,拷贝文件,这样能够准确的提高生产效率。 shell命令格式 #!/bin/sh #参数格式如果不等于1 [ $# -lt 1 ] then echo "no 1 parameters" exit 0 fi 变量复制,日志记录 thom=$1 echo "[$thom"test" ...]"...原创 2020-01-11 20:44:49 · 130 阅读 · 0 评论