6 lines
87 B
Bash
6 lines
87 B
Bash
|
#!/bin/bash
|
||
|
if ! command -v ssh &> /dev/null; then
|
||
|
echo "ssh未安装"
|
||
|
exit
|
||
|
fi
|