1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 07:57:46 +00:00

Base: Write some initial man pages

It ain't much, but it's honest work!
This commit is contained in:
Sergey Bugaev 2019-09-21 00:47:00 +03:00 committed by Andreas Kling
parent 36eea6c04b
commit fed96f455d
8 changed files with 256 additions and 0 deletions

View file

@ -0,0 +1,19 @@
## Name
mkdir - create a directory
## Synopsis
```**sh
$ mkdir path
```
## Description
Create a new empty directory at the given *path*.
## Examples
```sh
$ mkdir /tmp/foo
```