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
What are grep patterns?
hw will u use awk in replacing cahrs and files
Explain command to show the space allocation of files?
Explain ‘library functions’ with respect to unix commands?
What is the search command in unix?
How do I run a bash script?
Which unix command lists files/folders in alphabetical order?
What does sed command do in unix?
Describe the usage and functionality of the command rm –r * in unix?
What is s and g in sed command?
Give the command for finding the current date.
Which command is used to create a directory?
What does this command do? Cat food 1 > kitty
why metadb requires a seperate slice to create Solaris volume manager
What is the behavioural difference between cmp and diff commands?