Skip to content

Commit 21ea975

Browse files
committed
uname: implement uname
Implements non-standard domainname option `--domainname`/`-d`.
1 parent 9b81bf6 commit 21ea975

File tree

3 files changed

+406
-1
lines changed

3 files changed

+406
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Any tools not in GNU coreutils are acceptable as well.
2020
* nprocs
2121
* touch
2222
* true
23+
* uname
2324
* whoami
2425
* yes
2526

@@ -119,7 +120,6 @@ Any tools not in GNU coreutils are acceptable as well.
119120
* truncate
120121
* tsort
121122
* tty
122-
* uname
123123
* unexpand
124124
* uniq
125125
* unlink

src/commands/listing.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ pub const commands: []const type = &.{
1111
@import("nproc.zig"),
1212
@import("touch.zig"),
1313
@import("true.zig"),
14+
@import("uname.zig"),
1415
@import("whoami.zig"),
1516
@import("yes.zig"),
1617
};

0 commit comments

Comments
 (0)