what are special characters and explain how does text varies by the usage of single quotes,double quotes and back quotes?
1 6361Post New Shell Script Questions
How to check if the previous command was run successfully?
Calculate a real number calculation directly from the terminal and not any shell script.
I want to monitor a continuously updating log file, what command can be used to most efficiently achieve this?
What is a shell made of?
What does it mean by #!/Bin/sh or #!/Bin/bash at the beginning of every script?
What are the different variables present in linux shell?
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 are the advantages of using shell scripts?
What is shell and shell script?
What are the 3 standard streams in linux?
one folder contains lot of students name but I want to fetch hello with every student name individually using shell script
What is option in shell script?
How do scripts work?
What is the first line in every perl script called?
How to calculate the number of passed arguments?