mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-28 21:39:02 +08:00
adjust text
This commit is contained in:
parent
97556f6023
commit
c3ef8b433c
@ -20,8 +20,8 @@ func init() {
|
||||
|
||||
var cmdExport = &Command{
|
||||
UsageLine: "export -dir=/tmp -volumeId=234 -o=/dir/name.tar",
|
||||
Short: "export files out of one volume",
|
||||
Long: `export all files in a volume
|
||||
Short: "list or export files from one volume data file",
|
||||
Long: `List all files in a volume, or Export all files in a volume to a tar file if the output is specified.
|
||||
|
||||
`,
|
||||
}
|
||||
@ -29,7 +29,7 @@ var cmdExport = &Command{
|
||||
var (
|
||||
exportVolumePath = cmdExport.Flag.String("dir", "/tmp", "input data directory to store volume data files")
|
||||
exportVolumeId = cmdExport.Flag.Int("volumeId", -1, "a volume id. The volume should already exist in the dir. The volume index file should not exist.")
|
||||
dest = cmdExport.Flag.String("o", "", "output tar file name")
|
||||
dest = cmdExport.Flag.String("o", "", "output tar file name, must ends with .tar")
|
||||
tarFh *tar.Writer
|
||||
tarHeader tar.Header
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user