Gentoo-Upgrade/sbin/gentoo-fetchcommand.sh

13 lines
250 B
Bash
Raw Normal View History

2012-05-18 20:27:25 +04:00
#!/bin/bash
DEST_FILE=`echo $@ | sed 's~.* ~~g'`
/usr/bin/getdelta.sh "$@"
if [ ! -f "$DEST_FILE" ]; then
echo "======= FULL DOWNLOAD... ======"
echo "======= PARAMS: $@ ======"
/usr/bin/wget -t1 --passive-ftp $@
fi
exit 0