If you have a string "one two three", which shell command would you use to extract the strings?
5 13125What is the difference between a shell variable that is exported and the one that is not exported?
6 12095Post New Shell Script Questions
What does it mean to debug a script?
How do I save a powershell script?
c program which behaves like a shell(command interpreter). it has its own prompt say "NewShell$".any normal shell command is executed from your shell by starting a child process to execute a system program corrosponding to the command
How do scripts work?
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); }
What is the lifespan of a variable inside a shell script?
How to print the first array element?
What happens on a system call?
What command needs to be used to take the backup?
What is path variable bash?
What is bash used for?
Is cmd a shell?
What is a shell made of?
What is the crontab?
How to pass an argument to a script?