From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/67529 Path: news.gmane.org!not-for-mail From: jidanni@jidanni.org Newsgroups: gmane.emacs.gnus.general Subject: easiest way to subscribe to 10 groups at once Date: Tue, 07 Oct 2008 08:27:35 +0800 Message-ID: <87myhh2qrs.fsf@jidanni.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1223339317 7526 80.91.229.12 (7 Oct 2008 00:28:37 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 7 Oct 2008 00:28:37 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M15980@lists.math.uh.edu Tue Oct 07 02:29:36 2008 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.50) id 1Kn0SB-0004x2-Vm for ding-account@gmane.org; Tue, 07 Oct 2008 02:29:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1Kn0QV-0007Vw-1z; Mon, 06 Oct 2008 19:27:47 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Kn0QT-0007Vf-Tc for ding@lists.math.uh.edu; Mon, 06 Oct 2008 19:27:45 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1Kn0QQ-0008FG-W1 for ding@lists.math.uh.edu; Mon, 06 Oct 2008 19:27:45 -0500 Original-Received: from lax-green-bigip-5.dreamhost.com ([208.113.200.5] helo=blingymail-a2.g.dreamhost.com) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1Kn0QW-0002po-00 for ; Tue, 07 Oct 2008 02:27:48 +0200 Original-Received: from jidanni1.jidanni.org (122-127-39-77.dynamic.hinet.net [122.127.39.77]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by blingymail-a2.g.dreamhost.com (Postfix) with ESMTP id C263940D57 for ; Mon, 6 Oct 2008 17:27:38 -0700 (PDT) X-Spam-Score: -2.6 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:67529 Archived-At: This step was easy enough: # xargs -n 1 noffle -s < additional_groups_I_want_to_subscribe_to Next I attempted to use F runs the command gnus-group-find-new-groups which merely chomped CPU and made a giant buffer in the buffer list, until I hit ^G. No wonder F is disabled. (As I don't use .newsrc, I didn't investigate importing from there.) OK, then I did # perl -nlwe 'print "(gnus-group-jump-to-group \"$_\")"' < additional_groups... (gnus-group-jump-to-group "gmane.comp.handhelds.openmoko.announce") (gnus-group-jump-to-group "gmane.comp.handhelds.openmoko.apps") (gnus-group-jump-to-group "gmane.comp.handhelds.openmoko.buglog")... Which I pasted into the minibuffer of M-: (translated from :) runs the command eval-expression whereupon I was finally able to use uuuuu... to subscribe them. Jeez.