mirror of
https://github.com/minio/minio.git
synced 2024-12-25 06:35:56 -05:00
Adding markdown manpages
This commit is contained in:
parent
e219c65c9d
commit
ab97179323
17
docs/commands/minio-get.md
Normal file
17
docs/commands/minio-get.md
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
% MINIO(1) Minio Manual
|
||||||
|
% Minio
|
||||||
|
% December 2014
|
||||||
|
# NAME
|
||||||
|
minio-get - Get an object from the store.
|
||||||
|
|
||||||
|
# SYNOPSIS
|
||||||
|
**minio get**
|
||||||
|
BUCKET OBJECTPATH
|
||||||
|
|
||||||
|
# DESCRIPTION
|
||||||
|
Gets an object from a given BUCKET at the given OBJECTPATH. The object is
|
||||||
|
returned on the standard output stream (STDOUT)
|
||||||
|
|
||||||
|
# EXAMPLES
|
||||||
|
|
||||||
|
$ minio get images /favorites/example.png > local_image.png
|
17
docs/commands/minio-init.md
Normal file
17
docs/commands/minio-init.md
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
% MINIO(1) Minio Manual
|
||||||
|
% Minio
|
||||||
|
% December 2014
|
||||||
|
# NAME
|
||||||
|
minio-init - Initialize a new minio repository.
|
||||||
|
|
||||||
|
# SYNOPSIS
|
||||||
|
**minio init**
|
||||||
|
BUCKET
|
||||||
|
|
||||||
|
# DESCRIPTION
|
||||||
|
Initialize a new bucket. BUCKET is the name of the new bucket.
|
||||||
|
|
||||||
|
# EXAMPLES
|
||||||
|
|
||||||
|
$ minio init images
|
||||||
|
|
19
docs/commands/minio-put.md
Normal file
19
docs/commands/minio-put.md
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
% MINIO(1) Minio Manual
|
||||||
|
% Minio
|
||||||
|
% December 2014
|
||||||
|
# NAME
|
||||||
|
minio-put - Put an object into the store.
|
||||||
|
|
||||||
|
# SYNOPSIS
|
||||||
|
**minio put**
|
||||||
|
BUCKET OBJECTPATH [FILE]
|
||||||
|
|
||||||
|
# DESCRIPTION
|
||||||
|
Adds an object to a given BUCKET at the given OBJECTPATH. An optional FILE may
|
||||||
|
be provided. If no FILE is provided, the standard input stream (STDIN) is used
|
||||||
|
instead.
|
||||||
|
|
||||||
|
# EXAMPLES
|
||||||
|
|
||||||
|
$ minio put images /favorites/example.png local_image.png
|
||||||
|
$ minio put images /favorites/example2.png < local_image2.png
|
Loading…
Reference in New Issue
Block a user