10 lines
279 B
Bash
Executable File
10 lines
279 B
Bash
Executable File
#!/bin/bash
|
|
echo "DEERFLOW STATUS:"
|
|
if [ -d /opt/deer-flow ]; then
|
|
echo " Dir: /opt/deer-flow"
|
|
echo " Git: $(cd /opt/deer-flow && git log --oneline -1 2>/dev/null)"
|
|
echo " Process: $(pgrep -f deer-flow -c 2>/dev/null || echo 0) running"
|
|
else
|
|
echo " NOT INSTALLED"
|
|
fi
|