From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1KhlF4-0008WQ-Bk for garchives@archives.gentoo.org; Mon, 22 Sep 2008 13:14:18 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87C68E0471; Mon, 22 Sep 2008 13:14:15 +0000 (UTC) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.169]) by pigeon.gentoo.org (Postfix) with ESMTP id 4787EE0471 for ; Mon, 22 Sep 2008 13:14:15 +0000 (UTC) Received: by wf-out-1314.google.com with SMTP id 29so1838840wff.10 for ; Mon, 22 Sep 2008 06:14:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=BMyOIOiNOzpl32ig3mOQibrlSLcVPjWHj1iwXRRFwsA=; b=JGBo5sLFjAEGhWJLboT2W4zcdsR57UPa0kg2lBk5IJGBed7k7al0IOe7OQdwPsaVeg V+ZE23063FmJ7P8VIapcgSc3UCobOh3ykTQVBLYeazPkdKVZ3PAz6HUUhX2Xg+GyrP1J q3fiqEkqWPjvXGJGAG5Wiiw+Cu5GL5wP9zfK4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=pxKvs3WutZn9mHHghmnkEV1HtyFjRzw/eudboxiyD4gp6LexxosF/G5uAqNSgjH1jA QNe9gh0XnqQqzEUdtx37db5nug8jVU/vz2n4eASxm0mvZ9VR/ES618pjzzIKsbr7M5Iv +QUcXKWWQFLJSBdmcBw6sn61xob8r4sU1Mt4A= Received: by 10.114.133.1 with SMTP id g1mr4498430wad.149.1222089244137; Mon, 22 Sep 2008 06:14:04 -0700 (PDT) Received: by 10.114.25.9 with HTTP; Mon, 22 Sep 2008 06:14:04 -0700 (PDT) Message-ID: <8b4c83ad0809220614n514de148gd5694954ba60cb76@mail.gmail.com> Date: Mon, 22 Sep 2008 18:44:04 +0530 From: "Nirbheek Chauhan" To: "Denis Dupeyron" Subject: Re: [gentoo-project] New developer: Ron Gemeinhardt (timebandit) Cc: gentoo-project@lists.gentoo.org In-Reply-To: <7c612fc60809220552rccadc38me3113a64b4b95b47@mail.gmail.com> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Project discussion list X-BeenThere: gentoo-project@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <7c612fc60809220552rccadc38me3113a64b4b95b47@mail.gmail.com> X-Archives-Salt: 0b2dd0a5-841b-4711-a3f1-3a9ece28c575 X-Archives-Hash: 68841bca6df1a352dce0edd42d7aba3f On Mon, Sep 22, 2008 at 6:22 PM, Denis Dupeyron wrote: > I'm pleased to introduce Ron Gemeinhardt (timebandit) as a new Gentoo > developer. Ron will be a moderator with the forums team. Congrats, Ron, welcome and all that :-) > Ron is an electrical engineer in theory and a software architect in > practice. Having been in the IT business for more than 25 years he has > extensive knowledge of $(for ACRONYM in "${LinkedIn}"; do echo -n " > ${ACRONYM},"; done). This also automatically gives him access to the [...] > PS. The first one who comments about a comma at the end of the script > output above gets a free review with me. First-class care guaranteed. Actually, your fail was more than that. If "LinkedIn" were a variable, then $(for ACRONYM in ${LinkedIn}; do echo -n "${ACRONYM},"; done) elif "LinkedIn" were an array, then $(for ACRONYM in "${LinkedIn[@]}"; do echo -n "${ACRONYM},"; done) Also, the extra comma can be fixed by doing the following: $(for ACRONYM in ${LinkedIn}; do echo -en "${ACRONYM},"; done; echo -ne '\b') So, where's my free review? ;p -- ~Nirbheek Chauhan