Useful commands for command line logging
ls -la
lists all the files in the directory
ls -la | grep 'filename'
searches for the filename in the directory
grep -B 25 -A 25 'keyword' filename
searches for keyword in the file in the directory, PLUS 25 lines before and 25 lines after it