]> Kevux Git Server - kevux-tools/commit
This provides changes that were documented in that commit.
authorKevin Day <Kevin@kevux.org>
Fri, 21 Mar 2025 03:12:49 +0000 (22:12 -0500)
committerKevin Day <Kevin@kevux.org>
Fri, 21 Mar 2025 03:12:49 +0000 (22:12 -0500)
commit6fbc74614487c7d9686b13e0a99860d76bc37bf3
tree97284b803c2f472f74158349a27372c5e3fbb631
parent47b78a12c1c6aae22c6314b8a3f572a9ee1895eb
This provides changes that were documented in that commit.

Fix the `--force` flag, which essentially means that it must ignore missing files.
Update the help documentation regarding this.

The file stat printing function is very redundant and should be combined into the simulate function.
I noticed that the date based pre-processing is only in the printing and is not yet toggling the flags.
Begin moving this over.
I decided to make a separate function to handle this given its size.

Reset the `!(^)` check back to a `==`.
The compiler should be able to determine the most efficient operation and using plain `==` is just more readable.

Add some additional help messages describing how  the `<` and `>` characters must be quoted to prevent them being used as redirect characters.

Is `stop_year` not being used when it should be?
Plan on investigating this.

Be more consistent with the parameter handling strings in the program unit tests.

Add the unit tests for `--force`.
14 files changed:
data/build/remove/settings-tests.remove
sources/c/program/kevux/tools/remove/main/preprocess.c
sources/c/program/kevux/tools/remove/main/preprocess.h
sources/c/program/kevux/tools/remove/main/print/message.c
sources/c/program/kevux/tools/remove/main/print/simulate.c
tests/unit/remove/c/test-remove-directory_no_args.c
tests/unit/remove/c/test-remove-directory_recurse_simple.c
tests/unit/remove/c/test-remove-force.c [new file with mode: 0644]
tests/unit/remove/c/test-remove-force.h [new file with mode: 0644]
tests/unit/remove/c/test-remove-print_help.c
tests/unit/remove/c/test-remove-print_version.c
tests/unit/remove/c/test-remove-regular_no_args.c
tests/unit/remove/c/test-remove.c
tests/unit/remove/c/test-remove.h