lunix
lunix
DVD Backup With Linux
Mon, 03/09/2009 - 17:20 | by philipnorton42If you are part of a company the chances are that you have either set up or are aware of a backup policy for your data. However, even if you are not then you might have the need to backup certain items to a DVD drive.
Search And Highlight With Grep
Mon, 07/14/2008 - 08:42 | by philipnorton42Searching for things in many files is easy with the grep command, but in order to view the results with the expression results highlighted you need to use grep in conjunction with less.
grep expression *.txt | less +/expression
If you wanted to search all files called something.txt for the letter d you would use this line.
grep d *.txt | less +/d