Re: what port(s) give me good control over processes (list, kill, etc) better than MacOS pgrep+pkill

2023-04-07 Thread Richard L. Hamilton
Not seeing that, if this fits your scenario: sh-3.2$ open -a TextEdit sh-3.2$ pgrep -lf TextEdit 68476 /System/Applications/TextEdit.app/Contents/MacOS/TextEdit sh-3.2$ pkill TextEdit # it went away... SIGTERM is (usually) like Quit; SIGKILL is like Force Quit. A process may ignore SIGTERM; the

Re: what port(s) give me good control over processes (list, kill, etc) better than MacOS pgrep+pkill

2023-04-07 Thread Kenneth Wolcott
Hi Richard; Thanks for the info. I'll look into those. I found that a process that I started by using the MacOS open command could be listed by prep but I could not kill it with pkill (silently fails, like a no-op). Thanks, Ken On Fri, Apr 7, 2023 at 7:54 PM Richard L. Hamilton wrote: >

Re: what port(s) give me good control over processes (list, kill, etc) better than MacOS pgrep+pkill

2023-04-07 Thread Richard L. Hamilton
While AFAIK there is not a /proc port, there are FUSE based procfs implementations for macOS. They are limited in the information they can provide, they're using system calls rather than actually digging into the kernel, so they can only provide what the system calls they use offer. So I don't

what port(s) give me good control over processes (list, kill, etc) better than MacOS pgrep+pkill

2023-04-07 Thread Kenneth Wolcott
Hi; what port(s) give me good control over processes (list, kill, etc) better than MacOS pgrep+pkill? It would be great if MacOS has /proc filesystem like Linux. Thanks, Ken Wolcott

mongodb 6.0 - No mongo or mongosh binaries

2023-04-07 Thread Steven Green
After updating mongodb to version 6.0, there is no longer a mongo executable, which is how you normally connect to it from a command line. The mongo web site says "/The legacy mongo shell was deprecated in MongoDB 5.0 and removed in MongoDB 6.0. The new MongoDB Shell, mongosh, offers numerous

Re: argp.h

2023-04-07 Thread Ryan Schmidt
On Apr 7, 2023, at 04:23, Christoph Kukulies wrote: > Am 07.04.2023 um 11:02 schrieb Christoph Kukulies: > >> Anyone having an idea where the is buried? > > OK, I found in the macOS prerequisite list for macOS that the brew package > „argp_standalone“ is required. > I hate mixing brew and

Re: argp.h

2023-04-07 Thread Christoph Kukulies
OK, I found in the macOS prerequisite list for macOS that the brew package „argp_standalone“ is required. I hate mixing brew and macports. > Am 07.04.2023 um 11:02 schrieb Christoph Kukulies : > > I’m about to compile a tool, named „drat“ - an APFS repair tool >

argp.h

2023-04-07 Thread Christoph Kukulies
I’m about to compile a tool, named „drat“ - an APFS repair tool (https://github.com/jivanpal/drat ) maybe worth making a port of it - and I’m getting compilation errors since the argp_parse library (seems to be a part of the gnu clib, but which one?) cannot