diff --git a/echo.md b/echo.md index 11b20a3..5b3664b 100644 --- a/echo.md +++ b/echo.md @@ -47,4 +47,16 @@ echo * #=> Prints files and folders of current directory ```sh echo *.txt #=> Prints all .txt files from current directory -``` \ No newline at end of file +``` + +- 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 +```