Is there a curses-based mp3 player available in FreeBSD ?

Bertram Scharpf lists at bertram-scharpf.de
Wed Oct 19 17:13:38 UTC 2016


On Wednesday, 19. Oct 2016, 15:11:36 +0000, Manish Jain wrote:
> Unfortunately, mp3blaster has not yet been ported :
> 
> cd /usr/ports
> find . -iname blast
> ./x11/blast

Try

  $ find /usr/ports -maxdepth 2 -iname '*blast*'

Using regexes won't cut the asterisks off.

  $ find /usr/ports -maxdepth 2 -iregex '.*/.*blast.*'

If you're using Ruby you may like to install the gem
"rbfind" and say

  $ rbfind -m 2 -D blast
  $ rbfind -m 2 -p 'name =~ /blast/'

Yet, this is prejudiced because I wrote it myself.

Bertram

-- 
Bertram Scharpf
Stuttgart, Deutschland/Germany
http://www.bertram-scharpf.de


More information about the freebsd-questions mailing list