Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

get checksum of files inside tar archive on remote host

I succeed to obtain the md5sum of files inside archive without using file system thanks to :

tar tjf '/home/adup/mybackup.tar.bz2' | sort | grep -v '/$' |
( while read filename;
    do md5=$(tar xjOf '/home/adup/mybackup.tar.bz2' $filename | md5sum | awk '{print $1}'); 
    echo "$md5  $filename";
done)

Unfortunately what I need is to do on a remote host over ssh like :

ssh 192.9.202.44 tar tjf '/home/adup/mybackup.tar.bz2' | sort | grep -v '/$' |(  while read filename; do md5=$(tar xjOf '/home/adup/mybackup.tar.bz2' $filename | md5sum | awk '{print $1}'); echo "$md5  $filename"; done)

But like that it doesn't work, one of the tar command is interpreted locally and give me such error :

tar (child): /home/adup/mybackup.tar.bz2 : no such file

Please , is somebody can tell me how to proceed?

Thanks in advance,

like image 223
ad_igs Avatar asked Nov 06 '25 09:11

ad_igs


2 Answers

Simplest and fastest solution:

ssh 192.9.202.44 "tar --to-command=md5sum -xvjf /home/adup/mybackup.tar.bz2 | paste - -"

this should produce output like:

plik_1 21576a19c7e336a86b6f37578a1b9f4d  -
plik_2 90811da0150573efaba9c9d6aa1c4ea2  -

Regards,

like image 129
NiebieskiLuk Avatar answered Nov 08 '25 01:11

NiebieskiLuk


You need to pass to ssh the commands to be executed remotely as one string:

ssh 192.9.202.44 "tar tjf '/home/adup/mybackup.tar.bz2' | sort | grep -v '/\$' |(  while read filename; do md5=\$(tar xjOf '/home/adup/mybackup.tar.bz2' \$filename | md5sum | awk '{print $1}'); echo "\$md5  \$filename"; done)"

Also, make sure characters like $, which are interpreted by the local shell, are quoted.

The longer the script gets, the easier to make a mistake doing all this quoting. It can be easier to write a 'normal' shell script, copy it to the remote host with scp, and then execute with ssh.

like image 35
piokuc Avatar answered Nov 08 '25 00:11

piokuc



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!