...
Code Block |
---|
language | bash |
---|
linenumbers | true |
---|
collapse | true |
---|
|
rclone copy [name of remote as set up above]:[name_of_folder_or_file (if spaces in name, you can put quotation marks around this after the colon)] [/path/to/destination/folder/originalname, i.e. processing folder, etc. If you want to retain the original folder name, enter it here, quoted if there are spaces in it] |
...
Code Block |
---|
language | bash |
---|
linenumbers | true | collapse | true |
---|
|
rclone copy dropbox:"Radhika Nahpal INT" "/media/sf_BCShared01/processing/2022_061acc/Radhika Nahpal INT" |
...
Code Block |
---|
language | bash |
---|
linenumbers | true | collapse | true |
---|
|
rclone copy googledrive:"Radhika Nahpal INT" "/media/sf_BCShared01/processing/2022_061acc/objects/Radhika Nahpal INT" |
...
Code Block |
---|
language | bash |
---|
linenumbers | true | collapse | true |
---|
|
rclone copy googledrive:"Radhika Nahpal INT" --drive-shared-with-me "/media/sf_BCShared01/processing/2022_061acc/objects/Radhika Nahpal INT" |
...
Code Block |
---|
language | bash |
---|
linenumbers | true | collapse | true |
---|
|
rclone ls googledrive:"Radhika Nahpal INT" "/media/sf_BCShared01/processing/2022_061acc/objects/Radhika Nahpal INT" --drive-show-all-gdocs --max-size 0 |
Once you have your list of Google object files, you can assess how to export them. <Add more info here on that>Most common formats of Docs, Sheets, and Slides we will choose to export in open document equivalent formats. You can do this by setting the google drive export formats (the default are Microsoft Office documents). There are other options (such as PDF) described at the link above. Here is an example:
Code Block |
---|
language | bash |
---|
linenumbers | true |
---|
|
rclone copy googledrive:"Radhika Nahpal INT" --drive-shared-with-me "/media/sf_BCShared01/processing/2022_061acc/objects/Radhika Nahpal INT" --drive-export-formats ods,odt,odp |
Some cloud providers have checksums stored in their system that you can extract and facilitate fixity checking. Some are unique to their system or some can be more standard types. Here is a general layout of the command to extract the checksums into a text file:
...