Posts tagged ‘time’

Various Time Scripts

To see the offset for a range of system

for X in `cat YourList.txt`
do
Y=`ssh $X -l root 'ntpdate -q 10.168.XX.XX' | awk -F, '{print $3}'`
echo $X $Y
done

Continue reading ‘Various Time Scripts’ »