mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-30 20:47:46 +00:00
uutils: add md5sum
This commit is contained in:
parent
62e639cfa6
commit
63825f96d5
2 changed files with 3 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -70,7 +70,7 @@ EXES := \
|
||||||
$(sort $(filter $(BUILD),$(filter-out $(DONT_BUILD),$(PROGS))))
|
$(sort $(filter $(BUILD),$(filter-out $(DONT_BUILD),$(PROGS))))
|
||||||
|
|
||||||
CRATES := \
|
CRATES := \
|
||||||
$(sort $(filter $(EXES), $(filter-out md5sum true false, $(EXES))))
|
$(sort $(filter $(EXES), $(filter-out true false, $(EXES))))
|
||||||
|
|
||||||
INSTALL ?= $(EXES)
|
INSTALL ?= $(EXES)
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,7 @@ extern crate hostname;
|
||||||
extern crate id;
|
extern crate id;
|
||||||
extern crate kill;
|
extern crate kill;
|
||||||
extern crate logname;
|
extern crate logname;
|
||||||
|
extern crate md5sum;
|
||||||
extern crate mkdir;
|
extern crate mkdir;
|
||||||
extern crate nl;
|
extern crate nl;
|
||||||
extern crate paste;
|
extern crate paste;
|
||||||
|
@ -91,6 +92,7 @@ fn util_map() -> HashMap<&str, fn(Vec<String>) -> int> {
|
||||||
map.insert("id", id::uumain);
|
map.insert("id", id::uumain);
|
||||||
map.insert("kill", kill::uumain);
|
map.insert("kill", kill::uumain);
|
||||||
map.insert("logname", logname::uumain);
|
map.insert("logname", logname::uumain);
|
||||||
|
map.insert("md5sum", md5sum::uumain);
|
||||||
map.insert("mkdir", mkdir::uumain);
|
map.insert("mkdir", mkdir::uumain);
|
||||||
map.insert("nl", nl::uumain);
|
map.insert("nl", nl::uumain);
|
||||||
map.insert("paste", paste::uumain);
|
map.insert("paste", paste::uumain);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue