Solved Installed package/port seems missing

I just installed fbreader, but cant find the file when i type fbreader in terminal (alacritty, sh) or in sway wmenu.
I also tried installing through ports, same strange behaviour, the executable is missing. Is there a way to find out what is really happening? Thanks.
 
Is there a way to find out what is really happening?
For future reference, you can use pkg info -l <pkgname> to see which files it contains. Sometimes the actual name of the executable isn't obvious.

Code:
     -l, --list-files
             Display all files installed by pkg-name.
pkg-info(8)
 
Or directly use shell patterns without -x option (if resolvable in a unique port name)
pkg info -l 'python*'
this is ambiguous, maybe shows installed files for more than one package (if llvm19 and llvm20 are installed)
pkg info -l 'llvm*'
 
Back
Top