Date: Wed, 19 Oct 2016 19:13:34 +0200 From: Bertram Scharpf <lists@bertram-scharpf.de> To: freebsd-questions@freebsd.org Subject: Re: Is there a curses-based mp3 player available in FreeBSD ? Message-ID: <20161019171334.GA71531@becker.bs.l> In-Reply-To: <VI1PR02MB09743EAC1DCD5539913DC9F9F6D20@VI1PR02MB0974.eurprd02.prod.outlook.com> References: <mailman.83.1476878402.19583.freebsd-questions@freebsd.org> <VI1PR02MB09743EAC1DCD5539913DC9F9F6D20@VI1PR02MB0974.eurprd02.prod.outlook.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20161019171334.GA71531>