shell脚本打印日志方法

shell脚本打印日志方法

在shell脚本执行过程中如果没有日志记录,特别是脚本比较长的情况下在执行完再定位问题很难发现问题原因,因此在脚本中增加日志显得十分重要。如何在日志中记录是哪个用户什么时间执行的哪个脚本,执行结果又是什么呢?下面介绍日志打印方法 examp…

Read More

shell bash判断文件或文件夹是否存在

shell bash判断文件或文件夹是否存在

#shell判断文件夹是否存在 #如果文件夹不存在,创建文件夹 if [ ! -d "/myfolder" ]; then mkdir /myfolder fi #shell判断文件,目录是否存在或者具有权限 folder="/var/ww…

Read More

shell比较两个字符串是否相等

shell比较两个字符串是否相等

比较两个字符串是否相等的办法是: if [ "$test"x = "test"x ]; then 这里的关键有几点: 1 使用单个等号 2 注意到等号两边各有一个空格:这是unix shell的要求 3 注意到"$test"x最后的x,这是…

Read More

shell脚本执行时间统计

shell脚本执行时间统计

#!/bin/bash begin_time=$(date "+%s") echo -e "begin_time = $begin_time" sleep 3 make end_time=$(date "+%s") echo -e "end…

Read More

shell date格式

shell date格式

1、格式1-----2017-07-21 13:30:42 [root@shopping deploy]# date "+%F %H:%M:%S" 2017-07-21 13:30:42 2、格式2-----20170721140315 […

Read More
豫ICP备17003497号