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

join: implement basic functionality

The basic implementation of join with some tests. The supported
options: -1, -2, -j, -a, -i.
This commit is contained in:
Konstantin Pospelov 2017-12-14 00:02:42 +03:00
parent 372dda9dfa
commit b33ce67d91
19 changed files with 560 additions and 0 deletions

9
Cargo.lock generated
View file

@ -35,6 +35,7 @@ dependencies = [
"hostname 0.0.1",
"id 0.0.1",
"install 0.0.1",
"join 0.0.1",
"kill 0.0.1",
"lazy_static 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
@ -588,6 +589,14 @@ dependencies = [
"either 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "join"
version = "0.0.1"
dependencies = [
"getopts 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1",
]
[[package]]
name = "kernel32-sys"
version = "0.2.2"