diff --git a/cmd/mdrop-client/main.go b/cmd/mdrop-client/main.go index 1f9de71..8bf6fd8 100644 --- a/cmd/mdrop-client/main.go +++ b/cmd/mdrop-client/main.go @@ -14,7 +14,7 @@ Subcommand: get [options] subcommand Create instance for retriving file from sender - send [options] + send [options] [file2] [file...] subcommand Send file to reciever instance` diff --git a/cmd/mdrop-client/send_command.go b/cmd/mdrop-client/send_command.go index 42f4fc9..91dd3a3 100644 --- a/cmd/mdrop-client/send_command.go +++ b/cmd/mdrop-client/send_command.go @@ -26,7 +26,7 @@ func SendCommand(args []string) { file := flag.Args() if *help || len(file) == 0 { - fmt.Println("Command: mdrop send [options] ") + fmt.Println("Command: mdrop send [options] [file2] [file...]") flag.Usage() os.Exit(1) }