I have a csv called test.csv
that contains urls to be dowloaded in its first column. I want to download the urls using wget
. How can I do this in shell?
I have used the command below but no success:
awk -F ',' '{print $1}' test.csv | wget -P download_dir