What is the difference between a shell variable that is
exported and the one that is not exported?
Answer Posted / guest
Chile process will inharite the variable and its value v/s
will not inharit
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
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); }
How can I set the default rwx permission to all users on every file which is created in the current shell?
Is shell scripting difficult?
What will happen to my current process when I execute a command using exec?
write a shell script to generate a alert ? like when ur birthday came then generate a alert ur birthday is today like that ?
What is awk in shell script?
What is shell application?
How many fields are present in a crontab file and what does each field specify?
What is the significance of the shebang line in shell scripting?
How can you get the value of pi till a 100 decimal places?
How to check if the previous command was run successfully?
Is powershell a language?
What is $1 in shell scripting?
What is the command to find out today's date?
i have 2 tables 4 colums table 1 respective values a1 6, a2 8,a3 9,a4 14 & table 2 respective values a1 6, a2 8, a3 9, a4 12. if compare 2 tables 3 colums values same then 4th column values 1)Qes diff >5 then (5 * diff value ) 2)Qes diff <5 the 5 3)Qes diff 5 then 5 print respective values..