摘要:
Linux中的脚本文件一般都是以.sh结尾的。sh 是Unix 标准默认的shell脚本语言。文件编码必须是Unix编码不能是Windows。 创建一个hello.sh 文件,输入以下脚本。 #!/bin/bash # remark echo hello 使用 chmod +x hello.sh 添 阅读全文
摘要:
Windows 删除当前目录中的所有文件(后缀名log和txt文件除外) for /f %F in ('dir /b /a-d ^| findstr /vile ".log .txt"') do del "%F" 删除当前目录下的所有文件,包括子级目录下的文件(后缀名log和txt文件除外) for 阅读全文