#!/bin/bash # # Copyright Hans Aberg . # # Can be redistributed in possibly modified versions under the terms of the latest # Free Software Foundation GNU General Public License # valid at the time of redistribution, unless copyright distribution terms have been # changed at that time by the copyright owner. # # chuckurl -- download and open chuck URL pages. for CHUCKPATH in $* do echo "ftp" $CHUCKPATH ftp "$CHUCKPATH" CHUCKNAME="${CHUCKPATH##*/}" echo "chuck" $CHUCKNAME chuck "$CHUCKNAME" done