# fss-0002

main:
  touch ${WO}turtle-version
  the_Count=1 ; while [ $the_Count -le $(wc -l ${WO}installed-$REAL_INSTALLATION | awk '{ print $1 }') ] ; do the_line=$(more +$the_Count ${WO}installed-$REAL_INSTALLATION | line) ; the_prog=$(echo $the_line | awk '{ print $1 }') ; the_vers=$(echo $the_line | awk '{ print $4 }') ; if [[ $the_vers != "" ]] ; then if [[ ! $(grep "^$the_prog" ${WO}turtle-version) ]] ; then echo "$the_prog $the_vers" >> /etc/turtle-version ; fi ; fi ; let the_Count=${the_Count}+1 ; done
