dtb trinity
trinity pushed to makefile-fixes at bonsai/harakit 2024-01-16 00:07:20 -07:00
a1b29bb6ed Makefile: fix PHONYness of existing recipes and make non-PHONY recipes
c237af0e37 Makefile: move PHONYs to their respective recipes
Compare 2 commits »
trinity created branch dj-fixes in bonsai/harakit 2024-01-15 13:34:51 -07:00
trinity pushed to dj-fixes at bonsai/harakit 2024-01-15 13:34:51 -07:00
ba7bd26fe6 dj(1): fix typos in comments
trinity pushed to main at bonsai/harakit 2024-01-15 13:33:40 -07:00
d25c8a64f2 dj(1): add copyright header to dj.c
trinity pushed to main at bonsai/harakit 2024-01-10 16:07:08 -07:00
14fd23ddba Merge pull request 'dj(1) - disk jockey' (#28) from dj into main
612067890f dj(1): interpret a '-' file name as standard input/output
88a66bcc01 dj(1): import from git.sr.ht/~trinity/src
Compare 3 commits »
trinity merged pull request bonsai/harakit#28 2024-01-10 16:07:06 -07:00
dj(1) - disk jockey
trinity commented on pull request bonsai/harakit#28 2024-01-10 16:06:56 -07:00
dj(1) - disk jockey

Emma gave me the okay verbally to merge.

trinity pushed to dj at bonsai/harakit 2024-01-10 15:03:15 -07:00
612067890f dj(1): interpret a '-' file name as standard input/output
trinity created pull request bonsai/harakit#28 2024-01-09 23:51:30 -07:00
dj(1) - disk jockey
trinity pushed to dj at bonsai/harakit 2024-01-09 23:45:10 -07:00
88a66bcc01 dj(1): import from git.sr.ht/~trinity/src
trinity commented on pull request bonsai/harakit#18 2024-01-07 07:40:37 -07:00
fop(1) and Rust sysexits support (no yacexits!)

It would be nice to be able to narrow down fields.

trinity created branch dj in bonsai/harakit 2024-01-06 16:31:35 -07:00
trinity pushed to dj at bonsai/harakit 2024-01-06 16:31:35 -07:00
fec8564494 dj(1): imported from git.sr.ht/~trinity/src
trinity commented on issue bonsai/harakit#14 2024-01-06 07:15:29 -07:00
fis(1) – field isolator

Rather than cut(1p), perhaps it should be fis(1) - field isolator.

trinity commented on issue bonsai/harakit#15 2024-01-04 07:01:40 -07:00
dj(1) - disk jockey

-A will sync using nuls as the padding, -a will use spaces.

trinity commented on issue bonsai/harakit#14 2024-01-04 07:00:30 -07:00
fis(1) – field isolator

(-d delimiter) shouldn't be limited to one byte. cut -d " - " should be possible.

trinity commented on issue bonsai/harakit#15 2024-01-02 22:03:42 -07:00
dj(1) - disk jockey

POSIX dd(1p) does this:

sync Pad every input block to the size of the ibs= buffer, appending null bytes. (If either block or unblock…

trinity commented on issue bonsai/harakit#19 2024-01-02 14:02:53 -07:00
ASV in Bonsai

While we have agreed to "use ASV", I have yet to see any discussion of what that practically means. How will ASV be used? [USAS X3.4-1968](https://ia800800.us.archive.org/35/items/enf-ascii-196

trinity commented on issue bonsai/harakit#8 2024-01-01 22:45:18 -07:00
qi(1): The qi shell

It necessitates storing "$0" as a new shell variable to be able to continue using it, which shell authors writing diagnostics messages and following good practice always want to do.

trinity commented on issue bonsai/harakit#8 2024-01-01 21:26:44 -07:00
qi(1): The qi shell

I don't like the shell built-in shift.

  • It seems to mainly exist as an equivalent to the C idiom ++argv; --argc; which is (given the benefit of >30 years of hindsight since C89) a…