Jeremy's Notes provides a first-hand experience of setting up, living in and maintaining a smart home. Jeremy shares his professional and personal experiences in and around the IT world, which he integrates into many aspects of his home and life.
This setup guide outlines the steps required to set up the Windows Subsystem for Linux (WSL) feature on a Windows 10 workstation.
If you would like to find a specific string of text within a directory of files, you can use the following command and example:
user@host:~$ grep -rnw '/path/to/directory/' -e 'searchterm'
Here's a breakdown of the example command and its parameters:
-r
or -R
will recursively (within directories) look at all files within the specified path.-n
will display the line number where the term shows up within each file.-w
Matches the whole word.This will be a short post…
I've finally reactivated the JeremysNotes.com blog using the Dokuwiki wiki-based CMS. There are still a few kinks in the site that I'm working to finalize as soon as my time and life allow. I chose Dokuwiki because of its flat file-based storage, simple syntax, and wiki nature, allowing this site to be more of a knowledge repository than just a blog.