1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

Added nohup to uutils

This commit is contained in:
Vsevolod Velichko 2014-06-25 13:00:19 +04:00
parent 3da3d7333c
commit 0063bb2a8c

View file

@ -37,6 +37,7 @@ extern crate hashsum;
extern crate mkdir;
extern crate mkfifo;
extern crate nl;
extern crate nohup;
extern crate paste;
extern crate printenv;
extern crate pwd;
@ -104,6 +105,7 @@ fn util_map() -> HashMap<&str, fn(Vec<String>) -> int> {
map.insert("mkdir", mkdir::uumain);
map.insert("mkfifo", mkfifo::uumain);
map.insert("nl", nl::uumain);
map.insert("nohup", nohup::uumain);
map.insert("paste", paste::uumain);
map.insert("printenv", printenv::uumain);
map.insert("pwd", pwd::uumain);