I have tried so many ways but finally happy with this
The above script will produce load average from a remote system.#!/bin/bashfor i in localhost 127.0.01
do
ssh raja@$i 'uptime | grep -o load.*'
done
The above script will produce load average from a remote system.#!/bin/bashfor i in localhost 127.0.01
do
ssh raja@$i 'uptime | grep -o load.*'
done
0 comments:
Post a Comment