Skip to content

Commit ad5ce36

Browse files
authored
fix a typo (#154)
1 parent 0f45c04 commit ad5ce36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ebook/en/content/023-bash-redirection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Example:
5757
```
5858
echo "Hello World!" > file.txt
5959
```
60-
The following command will not print "Hello World" on the terminal screen, it will instead create a file called ``file.txt`` and will write the "Hello World" string to it.
60+
The above command will not print "Hello World" on the terminal screen, it will instead create a file called ``file.txt`` and will write the "Hello World" string to it.
6161
This can be verified by running the ``cat`` command on the ``file.txt`` file.
6262
```
6363
cat file.txt

0 commit comments

Comments
 (0)