#!/bin/bash # max_number_of_ssh_client max_number_of_ssh_client=3 # lsof is essential if [[ ! -x `which lsof` ]]; then yum install lsof -y RETVAL=$? if [[ “$RETVAL” -ne “0” ]]; then echo “ERROR: can NOT use lsof command, please check your internet connection or install lsof by manual! ” exit $RETVAL fi else # TODO # for awk, […]
Recent Comments