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
I'd like to have a script that would allow me to connect to a remote server and compare checksums of files in a remote directory and a certain local directory. My hope is that this would be most useful for confirming that all files have been properly transferred.
The text was updated successfully, but these errors were encountered:
ichksum -r /iplant/home/nirav/winning/
Will give you a recursive listing of chksums for irods dir content (in this case dir "winning")
You can then go to same dir on local machine where same dir is
find ./ -type f -exec md5sum {} ;
You can redirect (using > ) to specific files and use your favorite scripting method to compare the 2 files (this is required as output is not formatted the same way )
I'd like to have a script that would allow me to connect to a remote server and compare checksums of files in a remote directory and a certain local directory. My hope is that this would be most useful for confirming that all files have been properly transferred.
The text was updated successfully, but these errors were encountered: