This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#!/bin/bash
source /etc/profile
# 检查java进程是否正常运行中
if pgrep -f "com.dsideal.FengHuang" >/dev/null 2>&1
then
echo"$(date): Java程序已经运行"
else
echo"$(date): Java程序未运行,将尝试启动..."
# 进入程序目录
cd /usr/local/tomcat8/webapps/FengHuang/WEB-INF/classes