#!/bin/bash# logs# 2018/2/2 yengPATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/binexport PATHcheck_error(){if [ $? -eq 1 ];thenecho \"$1 error\" >/root/t.logreturn 1fi}iotops(){#经测试得:这种情况不能在远程终端下用只能在真机的终端下用iotop >1.txt <<EOFqEOFcheck_error inputs errorcat 1.txt}main(){iotopsif [ $? -eq 1 ];thenexit 1fi}main
shell自动处理文件内部操作
未经允许不得转载:爱站程序员基地 » shell自动处理文件内部操作