diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2019-09-21 00:47:00 +0300 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-28 18:29:42 +0200 |
commit | fed96f455d4ce72b045550fd739412dec7c580eb (patch) | |
tree | c1c1bbe441cf63583756090420f3abf08d4a31d8 /Base/usr/share/man/man1/echo.md | |
parent | 36eea6c04bb3c44c2e938bbb4826b5559ea84078 (diff) | |
download | serenity-fed96f455d4ce72b045550fd739412dec7c580eb.zip |
Base: Write some initial man pages
It ain't much, but it's honest work!
Diffstat (limited to 'Base/usr/share/man/man1/echo.md')
-rw-r--r-- | Base/usr/share/man/man1/echo.md | 19 |
1 files changed, 19 insertions, 0 deletions
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! +``` |