#!/bin/bash TOOL="wget" TCHK=$(which $TOOL 2>/dev/null) [ ! -x "$TCHK" ] && echo "** Cannot find $TOOL!" && exit 1 OPTS="--recursive --no-parent --no-host-directories" OPTS="$OPTS --reject index.html*" OPTS="$OPTS --cut-dirs=3" OPTS="$OPTS --execute robots=off" FROM="https://www.slackware.com/~alien/slackbuilds/broadcom-sta/build/" $TOOL $OPTS $FROM echo "[DONE] $TOOL $OPTS $FROM" # https://github.com/winterheart/broadcom-bt-firmware