Re: Why this is not working ....

2005-07-27 Thread Jan Engelhardt
>PATH=' \ /home\ / $2 \ / $3 \ / lib ' >Why $2 and $3 are not replaced by user passed argument Because it is in single quotes, and single quotes do not provide interpolation^1. ^1 The term used by by perlop(1), section "Quote and Quote-like Operators". Interpolation yes/no holds true for

Why this is not working ....

2005-07-27 Thread Vikas
PATH=' \ /home\ / $2 \ / $3 \ / lib ' Why $2 and $3 are not replaced by user passed argument -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Michael Berger Sent: Wednesday, July 27, 2005 12:19 PM To: linux-kernel@vger.kernel.org Subject: Build error in

Why this is not working ....

2005-07-27 Thread Vikas
PATH=' \ /home\ / $2 \ / $3 \ / lib ' Why $2 and $3 are not replaced by user passed argument -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Michael Berger Sent: Wednesday, July 27, 2005 12:19 PM To: linux-kernel@vger.kernel.org Subject: Build error in

Re: Why this is not working ....

2005-07-27 Thread Jan Engelhardt
PATH=' \ /home\ / $2 \ / $3 \ / lib ' Why $2 and $3 are not replaced by user passed argument Because it is in single quotes, and single quotes do not provide interpolation^1. ^1 The term used by by perlop(1), section Quote and Quote-like Operators. Interpolation yes/no holds true for bash,