Created
April 8, 2019 11:24
-
-
Save idolawoye/0c219560f82e8981aefc716b78d1c019 to your computer and use it in GitHub Desktop.
Shell script for downloading bulk files
This file contains hidden or 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
| list=`cat TEXT_FILE` # list of the record file IDs. | |
| for i in $list | |
| do echo $i | |
| SHELL COMMAND [OPTIONS] $i #Command with file id | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment