Mass MD5 Hash Changer for Linux?

Status
Not open for further replies.

robinex

Active Member
268
2010
36
240
Hi I look mass md5 hash changer for linux. I try Mass MD5 Hash Changer v1.0 with wine But not work.

Now please help me, How can change md5 hash more files on linux?

any command code or apps or script,

I wait your replys
 
6 comments
Kind of a late reply, but here is a way to do it en masse in linux.

Code:
 find . -type f -name "*.rar" -execdir sh -c 'echo 0 >> "{}"' \;
It will find all the rar files below your current path and change the MD5.

You can also use it like this:

Code:
 find /home/user/files/ -type f -name "*.rar" -execdir sh -c 'echo 0 >> "{}"' \;
That will find all rar files below /home/user/files/, and change the MD5 of all.

I love find, it's so cool :)

Anyway, hope that helps!
 
Last edited:
Status
Not open for further replies.
Back
Top