Data Processing in Shell
Download Data using curl
https://curl.haxx.se/download.html
curl -O https://websitename.com/file001.txt
#-O -> download file with it's name
curl -o newname.txt https://websitename.com/file001.txt
#-o -> download file with new name
curl -O...
massyfigini.hashnode.dev4 min read