]> Kevux Git Server - kevux-tools/commit
Progress: Continue working on completing the remove program.
authorKevin Day <Kevin@kevux.org>
Fri, 28 Mar 2025 22:38:06 +0000 (17:38 -0500)
committerKevin Day <Kevin@kevux.org>
Sat, 29 Mar 2025 02:09:43 +0000 (21:09 -0500)
commit2cfb0d551ee3ae15a937ba49c2a934063ccee39c
treef0516c6be119940ace68ce4b5ffc263c2deb70b0
parent77c060dbb8da1c98f2c1be7ae935f5330604a82d
Progress: Continue working on completing the remove program.

Make sure the `--force` parameter is properly suppressing errors and warnings when a file is not found.
Do not print an error or error out when `--force` is used.
Utilize the `ignore` string and print the boolean state based on `--force` when a file is not found during simulation mode.

Remove the warning on file not found because an error is potentially printed later on.

Update the `--prompt` settings.

Update the program unit tests.
The program now properly returns non-zero on file not found when trying to remove.
The program unit tests are updated to match this expectation.

Update the readme documentation for the remove program.

Fix the standard parameters and properly use `f_console_standard_parameter_last_e`.

Begin adding the `rm` program.
43 files changed:
data/build/remove/fakefile
data/build/remove/settings.rm [new file with mode: 0644]
data/build/stand_alone/fakefile
data/build/stand_alone/settings/settings.remove
data/build/stand_alone/settings/settings.rm [new file with mode: 0644]
data/build/stand_alone/settings/settings.rmdir
data/build/stand_alone/settings/settings.tacocat
documents/readme.remove.txt
sources/c/program/kevux/tools/remove/main/common.c
sources/c/program/kevux/tools/remove/main/common/define.h
sources/c/program/kevux/tools/remove/main/common/enumeration.h
sources/c/program/kevux/tools/remove/main/common/string.c
sources/c/program/kevux/tools/remove/main/common/string.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.c
sources/c/program/kevux/tools/remove/main/print/simulate.c
sources/c/program/kevux/tools/remove/main/print/simulate.h
sources/c/program/kevux/tools/remove/main/remove.c
sources/c/program/kevux/tools/remove/rm/config.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rm/config.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rm/enumeration.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rm/enumeration.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rm/main.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rm/main.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rm/print.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rm/print.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rm/rm.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rm/rm.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rm/string.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rm/string.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/rmdir/enumeration.h
sources/c/program/kevux/tools/remove/rmdir/main.h
sources/c/program/kevux/tools/remove/rmdir/print.h
sources/c/program/kevux/tools/remove/rmdir/rmdir.c
sources/c/program/kevux/tools/remove/rmdir/rmdir.h
sources/c/program/kevux/tools/remove/rmdir/string.h
sources/c/program/kevux/tools/remove/unlink/enumeration.h
sources/c/program/kevux/tools/remove/unlink/unlink.c
tests/unit/remove/c/test-remove-directory_no_args.c
tests/unit/remove/c/test-remove-force.c
tests/unit/remove/c/test-remove-regular_no_args.c
tests/unit/remove/c/test-remove.c