Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
added a new option in 'echo' command
improved markdow too!
  • Loading branch information
Abhinav Kashyap authored Oct 7, 2022
commit 76e80879c695a49432b054d87813a6331839f018
14 changes: 13 additions & 1 deletion echo.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,16 @@ echo * #=> Prints files and folders of current directory

```sh
echo *.txt #=> Prints all .txt files from current directory
```
```

- Using option new Line ‘\n‘ and horizontal tab ‘\t‘ simultaneously.
```sh
$ echo -e "\n\Onecompiler \n\tis \n\ta \n\tcommunity \n\tof \n\tNerds"

Onecompiler
is
a
community
of
Nerds
```