What is scripting used for?
No Answer is Posted For this Question
Be the First to Post Answer
write a shell script that counts a number of unique word contained in the file and print them in alphabetical order line by line?
What is shell company all about?
What is sh in shell script?
How to sort a result of Ls -l command based on columns. Ex. i want to sort 5th column from output of ls -l command.
write a shell script to find the largest number from 3 given numbers.
whta is the use of "exec" command?
How can any user find out all information about a specific user like his default shell, real-life name, default directory, when and how long he has been using the system?
How do we delete all blank lines in a file?
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 to create environment variables?What are the conditions for creating variables?
Where cron file kept?
How to group the commands in shell scripting?