jmeter非gui之shell脚本

目录非空,不能写

jmeter非gui之shell脚本

 

通过shell脚本处理:

#!/bin/bash
filename=`date +'%Y%m%d%H%M%S'`
if [ -d /root/test ]
then
	echo -e "/root/test是目录。\n"
	file_count=`ls /root/test/ | wc -l`
	if [ $file_count != 0 ]
	then
		echo -e "/root/test不是空目录。开始备份。。。\n"
		mv /root/test/ /root/test_bak/$filename	
		echo -e "备份完成,重新创建/root/test目录\n"
		mkdir /root/test
	fi
else
	echo -e "/root/test不存在,创建此目录。\n"
	mkdir /root/test
fi

echo -e "开始执行jmeter非gui:jmeter -n -t 19.jmx -l /root/test/res.jtl -e -o /root/test\n"
jmeter -n -t 19.jmx -l /root/test/res.jtl -e -o /root/test
echo -e "\n脚本执行完成。\n"

 

上一篇:Docker安装Oracle 11g(以Mac OS为例)


下一篇:【DATAGUARD】 将11g物理备库转换为Snapshot Standby