├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── CI.yml ├── .gitignore ├── LICENSE ├── README.md └── src ├── Arg.zig ├── Command.zig ├── IO.zig ├── commands ├── basename.zig ├── clear.zig ├── dirname.zig ├── false.zig ├── groups.zig ├── listing.zig ├── nproc.zig ├── template.zig ├── touch.zig ├── true.zig ├── uname.zig ├── unlink.zig ├── whoami.zig └── yes.zig ├── main.zig ├── shared.zig └── system ├── System.zig └── backend ├── Description.zig ├── FileSystem.zig ├── TestBackend.zig ├── Time.zig ├── Uname.zig └── UserGroup.zig /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/README.md -------------------------------------------------------------------------------- /src/Arg.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/Arg.zig -------------------------------------------------------------------------------- /src/Command.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/Command.zig -------------------------------------------------------------------------------- /src/IO.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/IO.zig -------------------------------------------------------------------------------- /src/commands/basename.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/basename.zig -------------------------------------------------------------------------------- /src/commands/clear.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/clear.zig -------------------------------------------------------------------------------- /src/commands/dirname.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/dirname.zig -------------------------------------------------------------------------------- /src/commands/false.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/false.zig -------------------------------------------------------------------------------- /src/commands/groups.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/groups.zig -------------------------------------------------------------------------------- /src/commands/listing.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/listing.zig -------------------------------------------------------------------------------- /src/commands/nproc.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/nproc.zig -------------------------------------------------------------------------------- /src/commands/template.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/template.zig -------------------------------------------------------------------------------- /src/commands/touch.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/touch.zig -------------------------------------------------------------------------------- /src/commands/true.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/true.zig -------------------------------------------------------------------------------- /src/commands/uname.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/uname.zig -------------------------------------------------------------------------------- /src/commands/unlink.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/unlink.zig -------------------------------------------------------------------------------- /src/commands/whoami.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/whoami.zig -------------------------------------------------------------------------------- /src/commands/yes.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/commands/yes.zig -------------------------------------------------------------------------------- /src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/main.zig -------------------------------------------------------------------------------- /src/shared.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/shared.zig -------------------------------------------------------------------------------- /src/system/System.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/system/System.zig -------------------------------------------------------------------------------- /src/system/backend/Description.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/system/backend/Description.zig -------------------------------------------------------------------------------- /src/system/backend/FileSystem.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/system/backend/FileSystem.zig -------------------------------------------------------------------------------- /src/system/backend/TestBackend.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/system/backend/TestBackend.zig -------------------------------------------------------------------------------- /src/system/backend/Time.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/system/backend/Time.zig -------------------------------------------------------------------------------- /src/system/backend/Uname.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/system/backend/Uname.zig -------------------------------------------------------------------------------- /src/system/backend/UserGroup.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leecannon/zig-coreutils/HEAD/src/system/backend/UserGroup.zig --------------------------------------------------------------------------------