docs(plus): remove cat -e

This commit is contained in:
eslopfer 2023-01-05 06:02:40 +00:00
parent 4ba8a4bb8a
commit b236264e84
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ In this exercise, you will make a script `plus.sh` that will take two arguments
### Usage
```console
$ ./plus.sh 2 3 | cat -e
5$
$ ./plus.sh 2 3
5
$
```