X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-5.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_FROM,KHOP_RCVD_TRUST,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org MIME-Version: 1.0 In-Reply-To: <20121101174144.M43908@ds.net> References: <1351606847888-94081 DOT post AT n5 DOT nabble DOT com> <20121031182143 DOT M67652 AT ds DOT net> <20121031194051 DOT GL67410 AT justpickone DOT org> <20121101174144 DOT M43908 AT ds DOT net> Date: Thu, 1 Nov 2012 14:01:00 -0400 Message-ID: Subject: Re: Command line arguments From: Earnie Boyd To: cygwin AT cygwin DOT com Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com On Thu, Nov 1, 2012 at 1:54 PM, Brian Wilson wrote: >> > % >${1}, ${2}, etc. Also, you may want to read up on the getopts >> > command as a % >way to process command line arguments. % Technically, >> > the {}'s are not needed. You can access them with $1, $2, ... % >> > "/path/to/$1.save/dir" but not "/path/to/$1save/dir" you'd need the >> > {} % (i.e. "/path/to/${1}save/dir" because otherwise the shell would >> > be % looking for "1save" as an env variable name. >> >> ... except that environment variables cannot begin with numbers :-) >> > > True, but that won't keep the system from trying to interpret the string as > a variable and erroring out on something a novice might easily write. > Actually, I started to state this as well then I tried it. To my surprise ``echo $1save'' echoed the contents of $1 followed by the string save. > I got in the habbit of always using the "{}" (even if they aren't absolutely > necessary) to avoid such issues on general principal. A generally good habit to learn. It helps to prevent the WTF moments. -- Earnie -- https://sites.google.com/site/earnieboyd -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple