What is the difference between a shell variable that is
exported and the one that is not exported?
Answer Posted / shimpi
Exported variable is like GLOBAL variable which can be used
across teh scripts and UNIX servers.
Whereas Unexported variable can be the used within the
defined script itself.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is shell environment?
What is shift command in shell script?
Can we run shell script in windows?
What is the crontab?
How can you find out how long the system has been running?
What is bash command used for?
What is a boot block?
how to get part of string variable with echo command only?
Which scripting language is best for automation?
What is mac default shell?
What is shell variable?
What is sh in shell script?
What are scripts in psychology?
How to replace following lines, catch (DAOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } catch (BOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw e; } catch (Exception e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } Needs to be changed in to, catch (DAOException e) { AppException.handleException (null, null, e, null, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); } catch (BOException e) { AppException.handleException (null, null, null, e, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 0); } catch (Exception e) { AppException.handleException (null, null, null, null, null, e, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); }
Why is the use of shell script?