Re: [PLUG] trying to satisfy everyone's critiques on missing man pages for executables

2024-03-24 Thread Robert Citek
On Sun, Mar 24, 2024 at 4:43 PM American Citizen wrote: > > On 3/24/24 07:55, Robert Citek wrote: > > zypper se --installed-only --format ta > > this failed too > > localhost:/ # zypper se -installed-only -format tabular | tee 000 > The flag o is not known. > localhost:/ # > > So do we have any s

Re: [PLUG] trying to satisfy everyone's critiques on missing man pages for executables

2024-03-24 Thread American Citizen
On 3/24/24 07:55, Robert Citek wrote: zypper se --installed-only --format ta this failed too localhost:/ # zypper se -installed-only -format tabular | tee 000 The flag o is not known. localhost:/ # So do we have any script which works??

Re: [PLUG] trying to satisfy everyone's critiques on missing man pages for executables

2024-03-24 Thread American Citizen
I set this up at root location and tried to execute and got a stall Actually I got this output Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type]     [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ...    file -C [-m magicfiles

Re: [PLUG] trying to satisfy everyone's critiques on missing man pages for executables

2024-03-24 Thread Robert Citek
On Sat, Mar 23, 2024 at 11:16 PM American Citizen wrote: > I am attempting to provide enough information on the missing man pages, > so I spent about 3 hours this evening on this. > > I have a linux OpenSuse Leap 15.5 linux system. Running the zipper list > shows 7,443 installed programs for the

Re: [PLUG] trying to satisfy everyone's critiques on missing man pages for executables

2024-03-23 Thread Russell Senior
Try this: for i in $(echo $PATH | awk 'BEGIN { RS=":" } { print $0 }') ; do find $i -type f -executable -print0 | xargs -0 file ; done | grep ELF | sort | uniq | less I got about 2000 lines. On Sat, Mar 23, 2024 at 10:16 PM American Citizen wrote: > I am attempting to provide enough informat

[PLUG] trying to satisfy everyone's critiques on missing man pages for executables

2024-03-23 Thread American Citizen
I am attempting to provide enough information on the missing man pages, so I spent about 3 hours this evening on this. I have a linux OpenSuse Leap 15.5 linux system. Running the zipper list shows 7,443 installed programs for the software respositories Here's the results of my investigations