tags: apache   archive   business   charity   climbing   comic   communication   database   email   exchange   family   fm2008   hack   hardware   humour   linux   liverpool   microsoft   money   mysql   network   oes   opensource   outlook   php   pictures   process   project   quote   real_life   review   rss   science   security   software   thought   tsm   updates   webdev   website   windows  

Linux for beginners - Part 2

Tue, 14 Aug 2007 21:33:19

We're working from the command prompt so it's useful to know how best to find files. The command we're going to take a sneeky peeky at is 'find'

find / -name myfile.log

Breakdown;
find - the command
/ - where we're searching. If we only wanted to search in the /etc/ folder the command would look like this 'find /etc/ -name myfile.log'
-name - tell the OS we are looking for the name of a file
myfile.log - the name of the file you're searching for

More to come
Ryan Partington