Subject: Why variable value assignment and "export" separate ?
From: matt-nospam@charly.com (Matt Stevens)
Date: 11/19/2007 4:54:27 PM
I often see in tutorials samples like:
PATH=$PATH:.;
export PATH
Why do the authors not write:
export PATH=$PATH:.;
That would be much shorter.
Matt