Skip to content
WJunction - Webmaster Forum

Mass MD5 Hash Changer for Linux?

Status
Not open for further replies.
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.

About the author

R
Active Member · Joined
268
Messages
36
Reactions
28
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom