Skip to content

Commit fea339a

Browse files
committed
Backtick tools in LOs
1 parent 95a4e67 commit fea339a

File tree

16 files changed

+27
-27
lines changed

16 files changed

+27
-27
lines changed

common-content/en/module/tools/awk/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ time = 20
55
facilitation = false
66
emoji= "💻"
77
[objectives]
8-
1="Filter a space-separated file and extract a positional field using awk"
9-
2="Sum the numbers in a column of a space-separated file using awk"
10-
3="Explain what NF and $NF mean in awk"
8+
1="Filter a space-separated file and extract a positional field using `awk`"
9+
2="Sum the numbers in a column of a space-separated file using `awk`"
10+
3="Explain what `NF` and `$NF` mean in awk"
1111
+++
1212

1313
`awk` is a tiny programming language for manipulating columns of data.

common-content/en/module/tools/bitwise-operators/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ time = 120
55
facilitation = false
66
emoji= "📖"
77
objectives=[
8-
"Describe the meaning of the &, |, ^, and ~ bitwise operators.",
9-
"Manually perform the function of the &, |, ^, and ~ bitwise operators on two integers.",
8+
"Describe the meaning of the `&`, `|`, `^`, and `~` bitwise operators.",
9+
"Manually perform the function of the `&`, `|`, `^`, and `~` bitwise operators on two integers.",
1010
]
1111
+++
1212

common-content/en/module/tools/cat-1/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ time = 10
55
facilitation = false
66
emoji= "💻"
77
[objectives]
8-
1="Show the contents of a file with cat"
8+
1="Show the contents of a file with `cat`"
99
+++
1010

1111
`cat` is a tool for getting the contents of files.

common-content/en/module/tools/cat-2/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ facilitation = false
66
emoji= "💻"
77
hide_from_overview = true
88
[objectives]
9-
1="Show the contents of a file, including line numbers, with cat"
9+
1="Show the contents of a file, including line numbers, with `cat`"
1010
2="Concatenate multiple files outputting to the terminal"
1111
+++
1212

common-content/en/module/tools/grep-in-pipelines/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ time = 20
55
facilitation = false
66
emoji= "💻"
77
[objectives]
8-
1="List the files in a directory which contain an upper-case letter in their name with ls and grep."
9-
2="Count the number of files in a directory which contain an upper-case letter in their name with ls, grep, and wc."
10-
3="Explain why we don't need to pass -1 to ls when piping its output."
8+
1="List the files in a directory which contain an upper-case letter in their name with `ls` and `grep`."
9+
2="Count the number of files in a directory which contain an upper-case letter in their name with `ls`, `grep`, and `wc`."
10+
3="Explain why we don't need to pass `-1` to `ls` when piping its output."
1111
+++
1212

1313
We've already used grep to search for text in files using regular expressions.

common-content/en/module/tools/grep/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ time = 30
55
facilitation = false
66
emoji= "💻"
77
[objectives]
8-
1="Identify the lines in a file which contain a string using grep"
9-
2="Identify which files contain a string using grep"
8+
1="Identify the lines in a file which contain a string using `grep`"
9+
2="Identify which files contain a string using `grep`"
1010
+++
1111

1212
`grep` is a tool for searching files for text.

common-content/en/module/tools/head-and-tail/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ time = 20
55
facilitation = false
66
emoji= "💻"
77
[objectives]
8-
1="Output the first 5 lines of a file using head"
9-
2="Output the last 5 lines of a file using tail"
10-
3="Output the five lines starting 10 lines into a file using head and tail"
8+
1="Output the first 5 lines of a file using `head`"
9+
2="Output the last 5 lines of a file using `tail`"
10+
3="Output the five lines starting 10 lines into a file using `head` and `tail`"
1111
+++
1212

1313
`head` outputs lines (or bytes) from the start of a file. `tail` outputs lines (or bytes) from the end of a fail.

common-content/en/module/tools/individual-shell-tools/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ time = 30
55
facilitation = false
66
emoji= "💻"
77
[objectives]
8-
1="Identify which of {cat, ls, wc, grep, sed, awk} will be useful to solve a given problem"
8+
1="Identify which of {`cat`, `ls`, `wc`, `grep`, `sed`, `awk`} will be useful to solve a given problem"
99
+++
1010

1111
Through this course, we are going to write lots of programs.

common-content/en/module/tools/jq/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ time = 90
55
facilitation = false
66
emoji= ""
77
[objectives]
8-
1="Use jq to retrieve information from a JSON file"
8+
1="Use `jq` to retrieve information from a JSON file"
99
+++
1010

1111
All of the tools we've seen so far operate on lines, words, or characters.

common-content/en/module/tools/ls/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ time = 15
55
facilitation = false
66
emoji= "💻"
77
[objectives]
8-
1="List the files (and directories) in a directory with ls"
8+
1="List the files (and directories) in a directory with `ls`"
99
+++
1010

1111
`ls` is a tool for listing the files in a directory.

common-content/en/module/tools/programming-language-concepts/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ objectives=[
88
"Describe what a variable is.",
99
"Describe how a variable relates to a memory location.",
1010
"Give examples of common operators.",
11-
"Describe the meaning of the && (and), || (or), and ! (not) operators.",
11+
"Describe the meaning of the `&&` (`and`), `||` (`or`), and `!` (`not`) operators.",
1212
"Explain what happens when you call a function.",
1313
]
1414
+++

common-content/en/module/tools/sed/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ time = 30
55
facilitation = false
66
emoji= "💻"
77
[objectives]
8-
1="Remove numbers from the start of lines in a file using sed"
9-
2="Replace occurences of one string in a file with another using sed"
10-
3="Print the lines of a file which don't contain some string using sed"
8+
1="Remove numbers from the start of lines in a file using `sed`"
9+
2="Replace occurrences of one string in a file with another using `sed`"
10+
3="Print the lines of a file which don't contain some string using `sed`"
1111
+++
1212

1313
`sed` is a tool for replacing text in files with other text.

common-content/en/module/tools/shell-pipelines/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ emoji= "💻"
88
1="Describe what a shell pipeline is."
99
2="Explain why we use shell pipelines."
1010
3="Explain the difference between stdout and stderr."
11-
4="Explain what gets passed between two programs when they're combined with a |."
11+
4="Explain what gets passed between two programs when they're combined with a `|`."
1212
+++
1313

1414
Read the learning objectives listed on this page: Bear in mind what you’re trying to achieve while reading this text. If a topic isn’t making much sense, and isn’t in the objectives, you can probably skip over it. If a topic is listed in the objectives, you should keep studying it until you are confident you’ve met the objective.

common-content/en/module/tools/sort-and-uniq/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ time = 20
55
facilitation = false
66
emoji= "💻"
77
[objectives]
8-
1="Count the occurrences of different lines within a file using sort and uniq"
8+
1="Count the occurrences of different lines within a file using `sort` and `uniq`"
99
+++
1010

1111
`sort` sorts its input. `uniq` deduplicates adjacent matching lines.

common-content/en/module/tools/tr/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ time = 20
55
facilitation = false
66
emoji= "💻"
77
[objectives]
8-
1="Replace all occurrences of one character with another using tr"
8+
1="Replace all occurrences of one character with another using `tr`"
99
+++
1010

1111
`tr` translates (replaces) characters.

common-content/en/module/tools/wc/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ time = 10
55
facilitation = false
66
emoji= "💻"
77
[objectives]
8-
1="Count the bytes, words, and lines of a file with wc"
9-
2="Count just the words of a file with wc"
8+
1="Count the bytes, words, and lines of a file with `wc`"
9+
2="Count just the words of a file with `wc`"
1010
+++
1111

1212
`wc` is a tool for counting the bytes, words, or lines in a file.

0 commit comments

Comments
 (0)