aboutsummaryrefslogtreecommitdiff
path: root/weed
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2016-09-07 18:05:57 -0700
committerChris Lu <chris.lu@gmail.com>2016-09-07 18:21:05 -0700
commitc4b7966dbee50970ebaf70269d74e96592ff72c9 (patch)
tree7467673862f40c9058fd58dbbe3b6948c6d67ad0 /weed
parent9992fe648da659f1994421c0a1bfd8bde91816fd (diff)
downloadseaweedfs-c4b7966dbee50970ebaf70269d74e96592ff72c9.tar.xz
seaweedfs-c4b7966dbee50970ebaf70269d74e96592ff72c9.zip
minor help message change
Diffstat (limited to 'weed')
-rw-r--r--weed/command/export.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/export.go b/weed/command/export.go
index 481aa111b..5a7dc71d9 100644
--- a/weed/command/export.go
+++ b/weed/command/export.go
@@ -51,7 +51,7 @@ func init() {
var (
output = cmdExport.Flag.String("o", "", "output tar file name, must ends with .tar, or just a \"-\" for stdout")
format = cmdExport.Flag.String("fileNameFormat", defaultFnFormat, "filename formatted with {{.Mime}} {{.Id}} {{.Name}} {{.Ext}}")
- newer = cmdExport.Flag.String("newer", "", "export only files newer than this time, default is all files. Must be specified in RFC3339 without timezone")
+ newer = cmdExport.Flag.String("newer", "", "export only files newer than this time, default is all files. Must be specified in RFC3339 without timezone, e.g. 2006-01-02T15:04:05")
tarOutputFile *tar.Writer
tarHeader tar.Header