随笔分类 -  shell

 
liunx shell 脚本的基础知识
摘要:Shell脚本编程30分钟入门 ## 什么是Shell脚本### 示例看个例子吧: #!/bin/sh cd ~ mkdir shell_tut cd shell_tut for ((i=0; i<10; i++)); do touch test_$i.txt done ### 示例解释 - 第1行 阅读全文
posted @ 2019-12-05 09:31 王会喜 阅读(337) 评论(0) 推荐(0) 编辑
shell 编程初级
摘要:shell编程的简单代码 一些基础代码 直接上代码 运行结果: 阅读全文
posted @ 2019-04-28 20:46 王会喜 阅读(186) 评论(0) 推荐(0) 编辑