How would you replace the n character in a file with some
xyz?
Answer Posted / vipul dalwala
sed -i 's/n/xyz/g' filename
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is in a script?
Print the 10th line without using tail and head command.
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
What is the way to do multilevel if-else's in shell scripting?
What does it mean to debug a script?
Write down the syntax for all the loops in shell scripting.
What language is bash?
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 you get the value of pi till a 100 decimal places?
How can I send a mail with a compressed file as an attachment?
Which scripting language is best for automation?
What's the difference between scripting and coding?
Determine the output of the following command: [ -z “” ] && echo 0 || echo 1
Give some situations where typing error can destroy a program?
How does shell scripting work?