Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
What you wrote means "read the file vob.lst and delete those lines which contain any character followed by the string 'vob'". I suppose every line of vob.lst contained any character followed by the string 'vob', so all was deleted and none printed out. So actually happened something, just not what you expected.banatello said:I tried using sed '/.vob/d' vob.lst, but nothing happened.
Where "string" is what ?AHSAN81 said:sed -n '/.vob$/p' string | sed 's/.vob$//g'