用shell脚本写出检测/tmp/size.log文件,如果存在显示它的内容,不存在则创建一个文件将创建时间写入 1#!/bin/bash2if[ -d"/tmp"];then3echo"/tmp is exists"4else5mkdir/tmp6fi7if[ -f"/tmp/size.log"];then8echo"size.log is exist";cat/tmp/size.log9else10touch/tmp/size.log;date> /tmp/size...
Shell脚本是一种用于自动化执行操作系统命令的脚本语言。它通常用于批处理任务、系统管理和自动化脚本编写。Shell脚本不能直接写入文件,但可以通过重定向操作符将输出写入文件。 重定向操作符包括: ...