How to get md5 hash of files in current directory

The following command pretty useful when you need to get a md5 of specific files e.g. only video files in the current dir.

find * -iname '*.mp4' -exec md5 '{}' \; >output.txt


Does anybody know what '{}' \; means?
  • 0
  • August 17, 2012, 6:24pm
  • t0lkman

Comments (1)

RSS Collapse / Expand

Only registered and authorized users can leave comments. Login or Register