#!/bin/sh
# manage a list contained in a file by removing the top line after use
# as long as size of the file FILE_LIST is not zero, keep on going
while [ `find FILE_LIST -size +0` ]
do
# get the first line from the file
LINE=`head -n1 FILE_LIST`
echo $LINE
# edit the FILE_LIST file and delete the first line
sed -si 1d FILE_LIST
done
Sun Solaris has a versitile patch manangement system call PatchPro. [patchpro.sun.com/] It is easy to install and setup, but sometimes balks when you try to get it to work through a proxy server that does user verification.
Here are some notes related to using patchpro through a firewall for Solaris 9. [Click on title above to read more ]