]> Kevux Git Server - kevux-tools/commit
Progress: Continue working on completing the remove program.
authorKevin Day <Kevin@kevux.org>
Thu, 27 Mar 2025 03:34:00 +0000 (22:34 -0500)
committerKevin Day <Kevin@kevux.org>
Thu, 27 Mar 2025 04:00:27 +0000 (23:00 -0500)
commitbabe38ad74481c06c324e1d2bd677b5f20d7e4e1
treefb399eee84612e292f7a36a22c4a922c9875ebbf
parent137aa0830908f1f4b50286b604e5e440256ac2b2
Progress: Continue working on completing the remove program.

Update the copyright year.

Add the `unlink` program.
Make sure all necessary callbacks are available to perform this.
Use a custom parameter processing to more closely match the standard Coreutils unlink argument.
I am still preserving some of the core parameters of the FLL/Kevux projects.
(This means that there is the `++version` and the `--version`.)

Fix bug where no error was being printed on non-existent file.
Make sure to also exit on error in this situation.
28 files changed:
data/build/fakefile
data/build/remove/fakefile
data/build/remove/settings
data/build/remove/settings.remove
data/build/remove/settings.unlink [new file with mode: 0644]
data/build/stand_alone/fakefile
data/build/stand_alone/settings/settings.unlink [new file with mode: 0644]
install.sh
sources/c/program/kevux/tools/remove/main/common/define.h
sources/c/program/kevux/tools/remove/main/common/print.c
sources/c/program/kevux/tools/remove/main/common/print.h
sources/c/program/kevux/tools/remove/main/common/type.h
sources/c/program/kevux/tools/remove/main/operate.c
sources/c/program/kevux/tools/remove/main/preprocess.c
sources/c/program/kevux/tools/remove/main/print/message.h
sources/c/program/kevux/tools/remove/remove/main.c
sources/c/program/kevux/tools/remove/unlink/config.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/unlink/config.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/unlink/enumeration.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/unlink/enumeration.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/unlink/main.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/unlink/main.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/unlink/print.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/unlink/print.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/unlink/string.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/unlink/string.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/unlink/unlink.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/unlink/unlink.h [new file with mode: 0644]