mirror of
https://github.com/wanganni/yinshiyuan.git
synced 2026-01-10 17:08:27 +01:00
10 lines
147 B
Bash
10 lines
147 B
Bash
echo "用户:"$(whoami)
|
|
|
|
if pgrep -x "sshd" >/dev/null
|
|
then
|
|
echo "sshd运行中..."
|
|
else
|
|
sshd
|
|
echo "自动启动sshd"
|
|
fi
|
|
debian
|