← Searching Text Data | Start ↺
Now is a good time to do a quick review!
In this session, we learned:
- how to use
touchandechoto create files - how to use
mkdirto create folders - how to navigate our file structure by
cd(change directory),pwd(print working directory), andls(list) - how to use redirects (
>) and pipes (|) to create a pipeline - how to explore a comma separated values (
.csv) dataset using word and line counts,headandtail, and the concatenate commandcat - how to search text files using the
grepcommand
And we made a cheat sheet for reference!
When we started, we reviewed what text is—whether plain or enriched. We learned that text editors that don't fix formatting of font, color, and size, do allow for more flexible manipulation and multi-program use. If text is allowed to be a string of characters (and not specific characters chosen for their compliance with a designer's intention), that text can be fed through programs and altered with automated regularity. Text editors are different software than Bash (or Terminal), which is a text-based shell that allows you to interact directly with your operating system giving direct input and receiving output.
← Searching Text Data | Start ↺