How i'll delete a particular line from the file? Please give
answer as soon as possible. Thanks in advance.

Answer Posted / dhanooj

1)open file ,point to that perticular line, give
command "dd"
it will delete the line and save the file by pressing ":wq"
2)grep -v 'string pattern' file > newfile
it will create newfile with all lines from the file
except the lines containing "string pattern"
3)sed "pattern/d" filename >tmpfile
will delete all lines having this pattern and will write
to newfile
4)sed "3,d" filename >tmpfile
will remove the line 3 and will write to tmpfile

Is This Answer Correct ?    21 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a bash command?

624


Why is awk called awk?

575


What's a command word?

584


What is grep command in unix with examples?

604


Write a command to kill the last background job?

618






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:

1758


How do I open a port?

589


Which command can you use to find the currently running process in unix server?

584


What is rmdir command?

550


why metadb requires a seperate slice to create Solaris volume manager

2552


Can you enlist some commonly used network commands?

598


What does the “echo” command do?

624


What are awk commands?

582


What does 'mkdir' command do in UNIX?

659


What is “chmod” command?

563