Finding text in files in a folder
Quite often I find myself looking for files which contain the same text. Mainly config settings, etc. On linux you…
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
Quite often I find myself looking for files which contain the same text. Mainly config settings, etc. On linux you…
There is a very useful command in Linux, called grep. It is a utility for searching plain text files using…
Finding files is a little different to MS DOS! find <startlocation> <type> <filename> <exec> The exec is a simple way…
find / -xdev -size +1000000 -exec ls -lh {} \; The above will list files greater than a gigabyte in…