From fed96f455d4ce72b045550fd739412dec7c580eb Mon Sep 17 00:00:00 2001 From: Sergey Bugaev Date: Sat, 21 Sep 2019 00:47:00 +0300 Subject: Base: Write some initial man pages It ain't much, but it's honest work! --- Base/usr/share/man/man1/echo.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Base/usr/share/man/man1/echo.md (limited to 'Base/usr/share/man/man1/echo.md') diff --git a/Base/usr/share/man/man1/echo.md b/Base/usr/share/man/man1/echo.md new file mode 100644 index 0000000000..d14033b9a5 --- /dev/null +++ b/Base/usr/share/man/man1/echo.md @@ -0,0 +1,19 @@ +## Name + +echo - print the given text + +## Synopsis + +`echo text...` + +## Description + +Print the given *text*, which is passed as argv, to the standard output, +separating arguments with a space character. + +## Examples + +```sh +$ echo hello friends! +hello friends! +``` -- cgit v1.2.3