You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
470 B

  1. #!/usr/bin/env bash
  2. wget-dlaccept () {
  3. moduleName="Wget-DL Accept File Type"
  4. moduleVersion="0.1.0"
  5. moduleToolUsed="Wget"
  6. echo "Please provide the filetypes you would like to filter seaperated with a ','. (mkv,mp4,jpg,etc)"
  7. read fileTypes
  8. echo "Please provide the path to the file or directory you would like to download"
  9. read directory
  10. wget -e robots=off -r -nc -np --accept $downDir $directory
  11. echo "Directory Download Complete!"
  12. }