dtb trinity
trinity commented on pull request bonsai/coreutils#96 2024-04-27 02:12:41 +00:00
WIP: testing

This seems ineligant. Programmatically print the test suite name at tests/$suite/Name, falling back to the folder name itself.

trinity commented on pull request bonsai/coreutils#96 2024-04-27 02:12:41 +00:00
WIP: testing

Why is this separate from tests/posix-compat/true.sh?

trinity commented on pull request bonsai/coreutils#96 2024-04-27 02:12:41 +00:00
WIP: testing

GNU false(1), a notoriously POSIX non-compliant implementation, would pass here, as (if I recall) it returns EXIT_FAILURE for improper usage. It shouldn't pass, though, because it prints a usage text to the standard output when usage help or version information are queried.

trinity approved bonsai/coreutils#97 2024-04-27 01:49:26 +00:00
Makefile: fixed manpage install location

Other than my boomer gripe it looks good.

trinity commented on pull request bonsai/coreutils#97 2024-04-27 01:49:26 +00:00
Makefile: fixed manpage install location

Could we use [ as test? The left-bracket use is a code smell for me as it tends to be more error prone. This particular usage seems fine.

trinity commented on pull request bonsai/coreutils#98 2024-04-27 01:45:47 +00:00
scrut(1): changed return status 0 to EXIT_SUCCESS

I added some small additional fixes to this branch.

  • You changed return 0 to return EXIT_SUCCESS, which was good, but return 1 was still present, so I changed it to return EXIT_FAILURE.…
trinity pushed to scrut-sysexits at bonsai/coreutils 2024-04-27 01:38:29 +00:00
6132c9bf47 Merge branch 'main' into scrut-sysexits
61382c34d9 mm(1): error out when given positional arguments
Compare 2 commits »
trinity pushed to scrut-sysexits at bonsai/coreutils 2024-04-27 01:35:59 +00:00
919b171400 scrut(1): conditionally include non-POSIX sysexits.h
8e38db92c7 scrut(1): update copyright header
adc9dbded5 scrut(1): changed return status 1 to EXIT_FAILURE
Compare 3 commits »
trinity closed pull request bonsai/coreutils#92 2024-04-27 01:25:34 +00:00
mm(1): error out when given positional arguments
trinity commented on pull request bonsai/coreutils#92 2024-04-27 01:25:22 +00:00
mm(1): error out when given positional arguments

Merged.

trinity pushed to main at bonsai/coreutils 2024-04-27 01:24:32 +00:00
61382c34d9 mm(1): error out when given positional arguments
trinity pushed to pg at bonsai/coreutils 2024-04-27 01:22:33 +00:00
7142994367 pg(1): start work on a quoted strtok(3) and internal environment
eb454a6dad pg(1): Simplify exit statuses from subcommands
Compare 2 commits »
trinity commented on pull request bonsai/coreutils#86 2024-04-22 22:32:49 +00:00
WIP: docs: fixed formatting of many manpages

This phrasing is in line with many other man page descriptions I have read and I find it to be the best solution to the problem of program names being hard to fit into grammar (to capitalize or…

trinity pushed to pg at bonsai/coreutils 2024-04-22 13:53:39 +00:00
9c1e0d785d pg(1): add -p option
trinity opened issue bonsai/coreutils#95 2024-04-22 13:44:43 +00:00
String tokenizing routine
trinity opened issue bonsai/coreutils#94 2024-04-22 13:40:44 +00:00
Number parsing routine
trinity pushed to pg at bonsai/coreutils 2024-04-22 07:13:00 +00:00
68919bf877 pg(1): put command system in
ea8b58554e pg(1): make it fit the project better
e26d8e0e1b pg(1): import from trinity/src
Compare 3 commits »
trinity created branch pg in bonsai/coreutils 2024-04-22 07:13:00 +00:00
trinity commented on issue bonsai/coreutils#44 2024-04-20 16:47:45 +00:00
scroll(1) – pager

I think a very light pager would be useful in addition to a (necessarily) slightly heavier editor. We could have two editors - pg(1) (operating in cooked mode using stdio.h) and scroll(1)…