You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added a script to download files from Google Drive
* Update README.md
* Added Images showing the script in action
* Removed downloaded files
* Update README
* Incorporated the changes requested
* Used markdown for output images
Get the file's link by right clicking on it and selecting the `Get link` option. Change the permissions as shown in the image below and copy the `fileID` portion of this link.
Download the file by passing the `fileID` present in the file's link (as shown above) and a `fileName` of your choice as command line arguments to the script. `fileName` is important for resuming downloads in case they fail in the middle.
36
+
37
+
```bash
38
+
$ chmod +x ./driveDownload.sh
39
+
$ ./driveDownload.sh <fileID><fileName>
40
+
```
41
+
42
+
In case a download fails, just rerun the above command with the same arguments and the download will resume from where it had stopped!
0 commit comments