Skip to content

Commit

Permalink
Merge pull request #122 from howToCodeWell/feature/lesson-6
Browse files Browse the repository at this point in the history
Adding lesson 6
  • Loading branch information
pfwd authored Jan 18, 2022
2 parents b1c9dd5 + 27af186 commit 31c0807
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Notes coming soon.
## Creating files
The following example will send `hello world` to a new file called `test.txt`

[Edit these notes](https://github.com/howToCodeWell/course-notes)
```bash
'hello world' > test.txt
```

## Appending files
The following example will add a new line with the text `hello again` to the file `test.txt`

```bash
'hello again' >> test.txt
```

0 comments on commit 31c0807

Please sign in to comment.