当前位置: 技术问答>linux和unix
求教几句代码的意思
来源: 互联网 发布时间:2016-10-18
本文导语: if [ -e /etc/init.d/tomcat ];then /sbin/service tomcat restart > /dev/null 2>&1 fi if [ -e /etc/init.d/tomcat ];then /sbin/service tomcat stop > /dev/null 2>&1 fi if [ $1 = 0 ] ; then if [ -d /usr/local/tomcat/work/Catalina/localhost/pts ]; then...
if [ -e /etc/init.d/tomcat ];then
/sbin/service tomcat restart > /dev/null 2>&1
fi
if [ -e /etc/init.d/tomcat ];then
/sbin/service tomcat stop > /dev/null 2>&1
fi
if [ $1 = 0 ] ; then
if [ -d /usr/local/tomcat/work/Catalina/localhost/pts ]; then
rm -rf /usr/local/tomcat/work/Catalina/localhost/pts/*
fi
fi
主要想知道if 表达式的含义
if [ -e /etc/init.d/tomcat ];then
/sbin/service tomcat start > /dev/null 2>&1
fi
/sbin/service tomcat restart > /dev/null 2>&1
fi
if [ -e /etc/init.d/tomcat ];then
/sbin/service tomcat stop > /dev/null 2>&1
fi
if [ $1 = 0 ] ; then
if [ -d /usr/local/tomcat/work/Catalina/localhost/pts ]; then
rm -rf /usr/local/tomcat/work/Catalina/localhost/pts/*
fi
fi
主要想知道if 表达式的含义
if [ -e /etc/init.d/tomcat ];then
/sbin/service tomcat start > /dev/null 2>&1
fi
|
建议你去看一些shell编程的书!
《Unix 与 Linux Shell编程指南》
《ABS》
《Unix 与 Linux Shell编程指南》
《ABS》
|
+1
|
看这个http://blog.daviesliu.net/2005/08/31/200811/