-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from toshi0383/man-page
Add missing man-pages
- Loading branch information
Showing
10 changed files
with
66 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.TH "CMDSHELF-BLOB" "1" "February 2018" "cmdshelf 0.9.3" "Cmdshelf Manual" | ||
.SH "NAME" | ||
cmdshelf-blob - Manage blobs | ||
.SH "SYNOPSIS" | ||
\fBcmdshelf blob\fR <command> [<args>] | ||
.SH "DESCRIPTION" | ||
.TP | ||
The blob subcommand manages blobs. | ||
.SH "SUB-COMMANDS" | ||
.SS add <name> <url> | ||
Add a blob named <name> at <url>. <url> can be a network URL or a local filepath. | ||
.SS list | ||
List blobs. | ||
.SS remove <name> | ||
Remove the blob named <name>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.TH "CMDSHELF-CAT" "1" "February 2018" "cmdshelf 0.9.3" "Cmdshelf Manual" | ||
.SH "NAME" | ||
cmdshelf-cat - Concatenate and print command(s). | ||
.SH "SYNOPSIS" | ||
\fBcmdshelf cat\fR [[<remoteName>:]<command>] | ||
.SH "DESCRIPTION" | ||
.TP | ||
The cat subcommand reads commands script files sequentially, writing them to the standard output. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.TH "CMDSHELF-REMOTE" "1" "February 2018" "cmdshelf 0.9.3" "Cmdshelf Manual" | ||
.SH "NAME" | ||
cmdshelf-remote - Manage set of tracked repositories | ||
.SH "SYNOPSIS" | ||
\fBcmdshelf remote\fR <command> [<args>] | ||
.SH "DESCRIPTION" | ||
.TP | ||
Manage the set of repositories ("remotes"). | ||
.SH "SUB-COMMANDS" | ||
.SS add <name> <url> | ||
Adds a remote named <name> for the repository at <url>. | ||
.SS list | ||
List tracked remotes. | ||
.SS remove <name> | ||
Remove the remote named <name>. This won't remove the cloned local repository. Clean on your own if needed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.TH "CMDSHELF-RUN" "1" "February 2018" "cmdshelf 0.9.3" "Cmdshelf Manual" | ||
.SH "NAME" | ||
cmdshelf-run - Execute command | ||
.SH "SYNOPSIS" | ||
\fBcmdshelf run\fR [<remoteName>:]<command> [<args>] | ||
.SH "DESCRIPTION" | ||
.TP | ||
The run subcommand receives command-alias and whitespace separated list of parameters. | ||
.SH "AVOIDING NAMESPACE CONFLICT" | ||
.TP | ||
|
||
The \fBrun\fR subcommand picks up first command matches the <command>. If you have same command names from different remotes, add <\fBremoteName\fR>: prefix to to be explicit. | ||
e.g. cmdshelf run myRemote:echo-sd hello |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.TH "CMDSHELF-UPDATE" "1" "February 2018" "cmdshelf 0.9.3" "Cmdshelf Manual" | ||
.SH "NAME" | ||
cmdshelf-update - Update cloned local repositories. | ||
.SH "SYNOPSIS" | ||
\fBcmdshelf update\fR | ||
.SH "DESCRIPTION" | ||
.TP | ||
The \fBupdate\fR subcommand updates each cloned repositories. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters