net*) echo "Retrieving binary from primary location into $TMPDIR .."
srcurl=""
if urlget $URL1/$file >$file
- then packit $file && echo Installed ok.
+ then echo "Installing .."
+ packit $file && echo Installed ok.
srcurl=$SRCURL1/$file
else echo "Retrying from Beta binary location.."
if urlget $URL2/$file >$file
- then packit $file && echo Installed ok.
+ then echo "Installing .."
+ packit $file && echo Installed ok.
srcurl=$SRCURL2/$file
else echo "Retrieval failed."
fi
for p in *.tar.bz2
do descr="../`echo $p | sed 's/.tar.bz2//'`/.descr"
if [ -f "$descr" ]
- then printf "%-32s %s\n" "$p" "`cat $descr`"
+ then echo "$p|`cat $descr`"
fi
done >List
)