Skip to content

Commit 6654b57

Browse files
committed
command line workshop
1 parent 62fd714 commit 6654b57

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

content/notes/hpc-from-terminal/section2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -277,11 +277,11 @@ $rmdir ~/test_dir/sub_dir
277277
</details>
278278

279279
Q3: Copy the directory
280-
`/share/resources/tutorials/rivanna-cli/shakespeare` into your home directory.
280+
`/share/resources/tutorials/rivanna-cl/shakespeare` into your home directory.
281281
<details><summary>Solution</summary>
282282

283283
```bash
284-
$cp -r /share/resources/tutorials/rivanna-cli/shakespeare ~
284+
$cp -r /share/resources/tutorials/rivanna-cl/shakespeare ~
285285
```
286286
</details>
287287

content/notes/hpc-from-terminal/section3.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ $more filename
154154
This displays the contents of a file on the screen with line scrolling. To scroll you can use ‘arrow’ keys. To advance one line, press the Enter key. To advance a full page, press the space bar. Press `q` to exit.
155155

156156
```bash
157-
$more ~/rivanna-cli/shakespeare/Lear.txt
157+
$more ~/rivanna-cl/shakespeare/Lear.txt
158158
```
159159

160160
To page upward within the text, press `b` (back).
@@ -164,7 +164,7 @@ To page upward within the text, press `b` (back).
164164
You can search in the forward direction with `/`<pattern>, where pattern is a combination of characters you wish to find.
165165

166166
```bash
167-
$more ~/rivanna-cli/shakespeare/Lear.text
167+
$more ~/rivanna-cl/shakespeare/Lear.text
168168
/serpent
169169
```
170170
<pre>
@@ -213,7 +213,7 @@ If used single `>` in place of the double `>>` in the above, `cat` will overwrit
213213

214214
Displays only the starting lines of a file. The default is first ten lines. Use “-n” to specify the number of lines.
215215
```bash
216-
$head ~/rivanna-cli/shakespeare/Lear.text
216+
$head ~/rivanna-cl/shakespeare/Lear.text
217217
```
218218
<pre>
219219
This Etext file is presented by Project Gutenberg, in
@@ -232,7 +232,7 @@ PROVIDED BY PROJECT GUTENBERG WITH PERMISSION. ELECTRONIC AND
232232

233233
Displays the last 10 lines.
234234
```bash
235-
$tail 30 ~/rivanna-cli/shakespeare/Lear.text
235+
$tail 30 ~/rivanna-cl/shakespeare/Lear.text
236236
```
237237
<pre>
238238
The cup of their deservings.- O, see, see!

0 commit comments

Comments
 (0)