The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
Google UNIX.COM



Thread: Export command
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 11-20-2007
SanjayLinux SanjayLinux is offline
Registered User
 

Join Date: Sep 2007
Posts: 58
Wink

1:-Want to know what does export command do??
What is its functionality?


The Best way to approach .. Go for the man page of "export" and "env" command.

2:- $at=1
$ echo $at
1
The variable above is it available to other script???


NO, It will be only for that terminal/shell. But if you want use that variable into your another scripts. You must have export it.

Thanks
Sanjay
Reply With Quote