Update per comments

This commit is contained in:
Jake Champlin 2016-05-16 13:17:37 -04:00
parent 1a0573136b
commit 5412c29edb
No known key found for this signature in database
GPG key ID: DC31F41958EF4AC2
2 changed files with 6 additions and 8 deletions

View file

@ -20,16 +20,14 @@ func (f *FSCommand) Help() string {
helpText := `
Usage: nomad fs <alloc-id> <path>
fs displays either the contents of an allocation directory for the passed allocation,
fs displays either the contents of an allocation directory for the passed allocation,
or displays the file at the given path. The path is relative to the root of the alloc
dir and defaults to root if unspecified.
General Options:
General Options:
` + generalOptionsUsage() + `
Fs Options:
-H
Machine friendly output.
@ -65,7 +63,7 @@ func (f *FSCommand) Run(args []string) int {
args = flags.Args()
if len(args) < 1 {
f.Ui.Error("allocation id is a required parameter")
f.Ui.Error("allocation id or -job is required")
return 1
}

View file

@ -13,13 +13,13 @@ client. The following functionalities are available - `cat`, `ls` and `stat`
`cat`: If the target path is a file, Nomad will cat the target path.
`ls`: If the target path is a directory, Nomad displays the name of a file and directories and their associated information.
`stat`: If the `-s` flag is used, Nomad will Display information about a file.
`stat`: If the `-stat` flag is used, Nomad will Display information about a file.
## Usage
```
nomad fs <alloc-id> <path>
nomad fs -s <alloc-id> <path>
nomad fs -stat <alloc-id> <path>
```
A valid allocation id is necessary unless `-job` is specified and the path is relative to the root of the allocation directory.
@ -40,7 +40,7 @@ Mode Size Modfied Time Name
-rw-rw-rw- 17 28 Jan 16 05:39 UTC redis.stdout
$ nomad fs -s redis/local/redis.stdout
$ nomad fs -stat redis/local/redis.stdout
Mode Size Modified Time Name
-rw-rw-rw- 17 28 Jan 16 05:39 UTC redis.stdout