Last active
February 26, 2020 20:14
-
-
Save ArunanSivanathan/dd428d8de787bcc07ef4b513b97d0da3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wget https://iotanalytics.unsw.edu.au/iottestbed/pcap/filelist.txt -O filelist.txt | |
cat filelist.txt | egrep -v "(^#.*|^$)" | xargs -n 1 wget |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
use
--no-check-certificate
option withwget
to verify certificate for server hosting these files.