Hi Guys,
I create the checklist using md5sum and I wanna put it in different directory. So I do this
But if I put the checksum in same directory with all *.sh files it works.
Why is that ? How if I wanna separate the directory between the checksum and *.sh files ?
Thanks guys,
I create the checklist using md5sum and I wanna put it in different directory. So I do this
Code:
md5sum *.sh > /tmp/checksum
#and I copy to destination server
scp *.sh user@dest_server:~
scp /tmp/checksum user@dest_server:/tmp/checksum
#and I'll check in /tmp directory
md5sum -c /tmp/checksum
#and the result is
md5sum: dyn.sh: No such file or directory
dynamic.ksh: FAILED open or read
But if I put the checksum in same directory with all *.sh files it works.
Why is that ? How if I wanna separate the directory between the checksum and *.sh files ?
Thanks guys,