SSH Secure Shellクライアントを使用してサーバーに接続し、スクリプトを実行します。
いくつかの条件でスクリプトを停止したいので、exitを使用すると、スクリプトが停止するだけでなく、すべてのクライアントがサーバーから切断されます!、コードは次のとおりです。
if [[ `echo $#` -eq 0 ]]; then
echo "Missing argument- must to get a friend list";
exit
fi
for user in $*; do
if [[ !(-f `echo ${user}.user`) ]]; then
echo "The user name ${user} doesn't exist.";
exit
fi
done
クライアントの写真:
なぜこうなった?