ln -s /home/*/scripts/conv-install
conv-install /home/*/Downloads/myexample.deb
#! /bin/bash
# automated convert and install script from downloaded binaries.
# created 4/17/2010
# creator Rupp
cd /home/*/Downloads
for file in $*
do
echo
echo
echo Converting $file
echo
tazpkg convert $file
done
echo
echo
echo
echo
for t in *.tazpkg; do
tazpkg install "$t" --forced
done
#! /bin/bash
# automated convert and install script from downloaded binaries.
# created 4/17/2010
# creator Rupp
cd /home/*/Downloads
for file in $*
do
echo
echo
echo Converting $file
echo
tazpkg convert $file
done
echo
echo
echo
echo
for t in *.tazpkg; do
tazpkg install "$t" --forced
done
echo
echo
read -p "Should I move the .tazpkg to your backup folder? ";
if [ $REPLY == "y" ]; then
echo
echo
echo done;
fi
for t in *.tazpkg; do
mv "$t" /media/disk/tazpkg
done
echo
echo
echo
read -p "Should I delete the original binary you converted?";
if [ $REPLY == "y" ]; then
echo
echo
echo done;
fi
for file in $*
do
echo
echo
rm $file
done
echo
echo
It looks like you're new here. If you want to get involved, click one of these buttons!