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
How do I run a bash script?
Which command can you use to find the currently running process in unix server?
What does grep v do?
What is unix command?
What does the command ' $who | sort –logfile > newfile' do?
Differentiate cat command from more command.
How many unix commands are there?
What is the command to find hidden files in the current directory?
What is command statement?
What are filter commands in unix?
What is awk good for?
Why is awk called awk?
What does 'mkdir' command do in UNIX?
What is updatedb?
Which command is used to find whether the system is 32 bit or 64 bit?