码迷,mamicode.com
首页 > 系统相关 > 详细

用shell脚本写出检测/tmp/size.log文件,如果存在显示它的内容,不存在则创建一个文件将创建时间写入

时间:2018-02-23 10:52:23      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:touch   sts   创建时间   bsp   时间   脚本   written   文件   pos   

 1 #!/bin/bash
 2 if [  -d "/tmp" ]; then
 3 echo "/tmp is exists"
 4 else
 5 mkdir /tmp
 6 fi
 7 if [  -f "/tmp/size.log" ]; then
 8 echo "size.log is exist";cat /tmp/size.log
 9 else
10 touch /tmp/size.log; date > /tmp/size.log; echo "date has been successfully  written to size.log" 
11 fi

 

用shell脚本写出检测/tmp/size.log文件,如果存在显示它的内容,不存在则创建一个文件将创建时间写入

标签:touch   sts   创建时间   bsp   时间   脚本   written   文件   pos   

原文地址:https://www.cnblogs.com/fanren224/p/8460748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!