From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 08:19:16 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ADB3AC3E for ; Sat, 20 Oct 2012 08:19:16 +0000 (UTC) (envelope-from admin@lissyara.su) Received: from mx.lissyara.su (mx.lissyara.su [91.227.18.11]) by mx1.freebsd.org (Postfix) with ESMTP id 331208FC0C for ; Sat, 20 Oct 2012 08:19:15 +0000 (UTC) Received: from [77.41.108.0] (port=28069 helo=dc7700p.lissyara.su) by mx.lissyara.su with esmtpa (Exim 4.80 (FreeBSD)) (envelope-from ) id 1TPUH2-000Ena-Tg for freebsd-current@freebsd.org; Sat, 20 Oct 2012 12:19:13 +0400 Message-ID: <50825E80.1000007@lissyara.su> Date: Sat, 20 Oct 2012 12:19:12 +0400 From: Alex Keda User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121019 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: Re: [HEADSUP] current switched by default to pkgng References: <20121010134421.GI26497@ithaqua.etoilebsd.net> <5081661B.2090209@lissyara.su> <50816D59.1030706@unsane.co.uk> <50816EE5.8090704@lissyara.su> <50817DEF.4070509@lissyara.su> <5081809F.8010003@lissyara.su> <20121020102325.25b9571b@laptop> In-Reply-To: <20121020102325.25b9571b@laptop> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Description: if spam count > 60 - this is spam X-Spam-Count: 0 X-Descriptions: powered by www.lissyara.su X-Bounce-ID: mx.lissyara.su X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 08:19:16 -0000 On 20.10.2012 11:23, Sergey V. Dyatko wrote: > On Fri, 19 Oct 2012 20:32:31 +0400 > Alex Keda wrote: > >> On 19.10.2012 20:21, Alex Keda wrote: >>> On 19.10.2012 19:59, Chris Rees wrote: >>>> On 19 October 2012 16:16, Alex Keda wrote: >>>>> On 19.10.2012 19:10, Vincent Hoffman wrote: >>>>>> On 19/10/2012 15:39, Alex Keda wrote: >>>>>>> pkg command does not have key for list options - no >>>>>>> autocompletions >>>>>>> >>>>>>> for example, for service command, I use >>>>>>> complete service 'n/*/`service -l`/' >>>>>>> in .cshrc >>>>>>> >>>>>>> what I can use for pkg command? >>>>>> >>>>>> horrible but working example >>>>>> pkg help 2>&1 | sed -e '1,/Commands supported:/d ; /For more >>>>>> information on the different commands/,$d; s/^ *// ; >>>>>> s/ .*.*$// ;/^$/d' >>>>>> >>>>>> There's bound to be better ways, I was just bored enough to >>>>>> knock this up. note s/^ *// is a tab, while s/ .*.*$// is >>>>>> 2 spaces dont think our sed has any other way to express tab >>>>>> other than an actual tab (ctrl-v then tab on the command line) >>>>> >>>>> it's crazy =) >>>>> may be add -l options? >>>> >>>> For Bourne-style shell: >>>> `pkg help 2>&1 | sed -nE 's,^ +(.*),\1,p'` >>>> >>>> For csh-style shell: >>>> `pkg help | & sed -nE 's,^ +(.*),\1,p'` >>>> >>>> where the bit between ^ and + is a tab character. You can type the >>>> tab character on a command prompt by using Ctrl+V then tab, or just >>>> type it normally in the script. >>>> >>>> Hope that helps in the meantime. >>>> >>>> Chris >>>> >>> dc7700p# pkg >>> -c Displays Performs a and >>> check debug from inside local >>> package packages remote search system >>> updating >>> -d Displays Performs a and >>> ......... skipped ........ >>> Displays Opens a against catalogues >>> debug from inside link package >>> packages register search system update >>> dc7700p# >>> dc7700p# grep pkg /root/.cshrc >>> complete pkg 'n/*/`pkg help |& sed -nE "s,^ >>> +(.*),\1,p"`/' >>> >>> some not work... I try my own string: >>> complete pkg 'n/*/`pkg help |& grep "Commands supported:" >>> --after-context=100 | grep "^\s" | awk "{print $1}"`/' >>> >>> output identical. maybe pipe not work in this place? >>> _______________________________________________ >>> freebsd-current@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-current >>> To unsubscribe, send any mail to >>> "freebsd-current-unsubscribe@freebsd.org" >>> >> >> it's a good crutch =) >> >> dc7700p# pkg >> add autoremove check create fetch info >> query remove rquery set shlib update upgrade >> which >> audit backup clean delete help install >> register repo search shell stats updating >> version >> dc7700p# pkg >> dc7700p# grep pkg /root/.cshrc >> complete pkg 'n/*/`pkg help |& grep "Commands supported:" >> --after-context=100 | grep "^\s" | cut -d " " -f 1`/' >> dc7700p# >> >> > > https://github.com/yoursbofh/pkgng-tcsh/blob/master/dot.cshrc_pkg > > Unfortunately, I do not know how to do something like `pkg command > <-keys> ` > > i.e. > 'n/audit/' 'c/-/(F q)/' '`pkg query "%n-%v"`/' > doesn't work :( > > [tiger@laptop]:~%pkg audit [tab] > Missing separator '/' after completion "". > > > need escape '