What is use of sed command?

Answer Posted / sneha

sed is stream editor.It is use to change one string of text
to another text.

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does #!/ Bin sh do?

599


What is the use of finger command?

603


What is difference between grep and find command in unix?

583


What is the use of awk command in unix?

584


How do you repeat a command in terminal?

598






What is the difference between cat command and more command?

602


What is grep r?

596


Describe the zip/unzip command using gzip.

615


Which command is used to delete all files in the current directory and all its sub-directories?

673


Is grep faster than awk?

569


Why is awk called awk?

581


How can we use grep command in unix?

621


What is .sh file?

624


What is the use of tee command?

573


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include # include int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

1768