What is awk in shell scripting?
No Answer is Posted For this Question
Be the First to Post Answer
How will you copy a file from one machine to other?
what is the meaning of First line of shell script ,what is meaning of #! pleas explain brifly
What will happen to my current process when I execute a command using exec?
How can you find out how long the system has been running?
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); }
wats the she bang statment with syntax?
Why should we use shell scripts?
one folder contains lot of students name but I want to fetch hello with every student name individually using shell script
When we login into our account which files are executed?
Using set -A write a script to print the output of the ls command in 5 columns with two spaces between each column. Pretend that ls does not have multicolumn output.
What are the Different types of shells?
How do I run a shell script on a mac?