Cover V07, I10
Article
Figure 1
Figure 10
Figure 11
Figure 12
Figure 13
Figure 14
Figure 2
Figure 3
Figure 4
Figure 5
Figure 6
Figure 7
Figure 8
Figure 9

oct98.tar


Figure 2: Diagnostic command execution and output compilation

echo "Collecting second batch of Netstat Statistics"
echo " " > /tmp/slow1.netstat2.$$
echo "NETSTAT 2" >> /tmp/slow1.netstat2.$$
$NETSTAT >> /tmp/slow1.netstat2.$$ 2>&1

echo "Collecting second batch of NFS Statistics"
echo " " > /tmp/slow1.nfsstat2.$$
echo "NFSSTAT 2" >> /tmp/slow1.nfsstat2.$$
$NFSSTAT >> /tmp/slow1.nfsstat2.$$ 2>&1

#Time to concatenate all the output files into alphanumeric order
sleep 1
cat /tmp/slow*.$$ > /tmp/slo.output.$$

#Clean up our temporary files
rm /tmp/slow*.$$