[SOLVED] md5 tool

In my old Mandriva distribution, there was a little app called md5sum that would calculate md5 hashes. I can't seem to find it in the mageia distro. Is there an equivalent here?
Thanks!
billo
Thanks!
billo
billo wrote:Oh, for crying out loud. I had been typing md5sim. Forehead slap. Thanks for making me look again, and sorry for the noise.
$ md5<TAB>
md5pass md5sum
[ahmad@mybox ~]$ md5s<TAB>
# urpmi --auto
--auto --auto-orphans --auto-select --auto-update
[root@mybox ahmad]# urpmi --auto-u<TAB>
urpmi a<TAB>
Sfiet_Konstantin wrote:Beware with urpmi
- Code: Select all
urpmi a<TAB>
can literraly stuck you computer because it will search every packages starts with A.
urpmi lib<TAB>
ahmad wrote:(You probably already know but just in case); You can use the bash (the shell) built-in tab completion so:
- Code: Select all
$ md5<TAB>
md5pass md5sum
[ahmad@mybox ~]$ md5s<TAB>
on the second tab, you'll get md5sum.
You can also install the bash-completion package, to get many more complex completions, e.g.:
- Code: Select all
# urpmi --auto
--auto --auto-orphans --auto-select --auto-update
[root@mybox ahmad]# urpmi --auto-u<TAB>
will auto-complete to 'urpmi --auto-update'. Check /etc/bash_completion.d/ for a list of the commands that will have bash completion support.