Re: git vs git
From: Erik Mouw <hidden>
Date: 2016-06-15 22:42:17
On Mon, Jan 30, 2006 at 08:55:36AM -0800, Randal L. Schwartz wrote:
quoted
quoted
quoted
quoted
quoted
"Erik" == Erik Mouw [off-list ref] writes:Erik> #! /bin/sh Erik> # sct: call git Erik> gitpath=/path/to/git Erik> export PATH=$gitpath:$PATH Erik> exec $gitpath/git $* You must not get a lot of spaces in your pathnames.
That usually doesn't happen in the kernel tree (which is what the OP wants to follow).
I think you want
those last two lines to be:
export PATH="$gitpath:$PATH"
exec "$gitpath/git" "$@"
Typical lazy shell programmer. :) :)Hey, I said "untested" :) But yeah, you're right. Your syntax is correct, every time I write such a wrapper I try to remember it... Erik -- +-- Erik Mouw -- www.harddisk-recovery.com -- +31 70 370 12 90 -- | Lab address: Delftechpark 26, 2628 XH, Delft, The Netherlands