2020年3月17日

shell脚本

摘要: shell是一个用C语言编写的程序; Linux的shell种类众多,常见的有Bourne Shell(/usr/bin/sh或/bin/sh)、Bourne Again Shell(/bin/bash)、C Shell等 Bash在日常工作中被广泛使用,也是大多数Linux系统默认的Shell。# 阅读全文

posted @ 2020-03-17 17:38 星空6 阅读(253) 评论(0) 推荐(0)

windows bat脚本(批处理)——for循环,if判断,goto跳转,遍历文件名,start打开网页;

摘要: 一、windows bat脚本的for语句基本形态如下; 在cmd窗口中:for %I in (command1) do command2 在批处理文件中:for %%I in (command1) do command2 for语句的基本要素: 1.for、in和do是for语句的关键字; 2.% 阅读全文

posted @ 2020-03-17 11:50 星空6 阅读(22914) 评论(0) 推荐(1)

导航