From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QV8sd-0006wZ-Ti for garchives@archives.gentoo.org; Fri, 10 Jun 2011 21:04:36 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E86E11C0FD for ; Fri, 10 Jun 2011 21:04:34 +0000 (UTC) Received: from mail-vx0-f181.google.com (mail-vx0-f181.google.com [209.85.220.181]) by pigeon.gentoo.org (Postfix) with ESMTP id F07081C0C9 for ; Fri, 10 Jun 2011 20:31:35 +0000 (UTC) Received: by vxb39 with SMTP id 39so3185935vxb.40 for ; Fri, 10 Jun 2011 13:31:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:from :date:x-google-sender-auth:message-id:subject:to:content-type; bh=5/2XUpVnW7K/cXzTzL7ifnELD9S/4rScoelG4TyuIl0=; b=fQQ1WNhMRfICDvCk4Cv46vCNwrjBLmSd9rDSF5RMOwvllAX6VpPgmtoSMlExwKWos4 YGlTGpf/WTEJaG8i2JrkmrI2zVvTVaBooI3RzFq8Xmguy4fX1Wy4xdQsoN5bV2cdmJH8 2+P66uOPciy7JSuA12+AtRHxq5ZNJtTrou8Hc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:content-type; b=ac/Osi7ZPFhPaX381kkv24I4vm9o2bEoFOsMWB6yXum7epjvGuquPX/36ngUr0+LIX 1D8ncM+18p68nMh9JxNEDFf6NL8kfYF95Clhse8a+OSYE111K17N66qo5ArMfAAq0UJd FKoRCa1QoPHLjaN98Mvtw/qXtHQlqdVxgMvrI= Received: by 10.52.111.68 with SMTP id ig4mr1900115vdb.4.1307737895168; Fri, 10 Jun 2011 13:31:35 -0700 (PDT) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Sender: paul.hartman@gmail.com Received: by 10.52.169.8 with HTTP; Fri, 10 Jun 2011 13:31:15 -0700 (PDT) In-Reply-To: <4DF27914.5060907@gmail.com> References: <4DF0A5FA.1020602@gmail.com> <4DF0B893.6010303@gmail.com> <201106092018.37311.alan.mckinnon@gmail.com> <4DF11681.3060908@gmail.com> <4DF25740.9030800@gmail.com> <4DF26BC2.1090106@gmail.com> <4DF27914.5060907@gmail.com> From: Paul Hartman Date: Fri, 10 Jun 2011 15:31:15 -0500 X-Google-Sender-Auth: 5163UUnavUbNP02afjflTmh4I6I Message-ID: Subject: Re: [gentoo-user] Re: Kernel Modules To: gentoo-user@lists.gentoo.org Content-Type: text/plain; charset=ISO-8859-1 X-Archives-Salt: X-Archives-Hash: 4ff7019d255ce56ec2c5089ae94cdd84 On Fri, Jun 10, 2011 at 3:05 PM, Dale wrote: > I notice a really long list of things when I do this: > > eselect bashcomp list > > Is there a way to just enable them all? The wiki has a bunch of info, including a command to set them all at once. I've pasted it below, but e-mail formatting may ruin it. http://en.gentoo-wiki.com/wiki/TAB-Completion (quote) If you want to enable all Bash tab-completions available for your system, type: if using eselect (just remove the --global option if you don't want to enable them globally): ( shopt -s extglob; eselect bashcomp list | while read -r s; do s="${s##*][[:space:]]}"; [[ $s != Available* ]] && eselect bashcomp enable --global "${s%%?([[:space:]]\\*)}"; done ) Remember, for the changes to have an immediate effect, issue the following command: source /etc/bash/bashrc (unquote)