From 1c784da2146691acd238f608b8c6e405fb3b6520 Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Thu, 16 Feb 2017 10:00:06 +0000 Subject: [PATCH] Export to stdOut not into a file --- cli/export.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/export.go b/cli/export.go index 49b64930..860e2821 100644 --- a/cli/export.go +++ b/cli/export.go @@ -19,9 +19,9 @@ import ( ) var exportCmd = &cobra.Command{ - Use: "export [options] ", - Short: "Export data from an existing database into a JSON file", - Example: " surreal export backup.zip", + Use: "export", + Short: "Export data from an existing database", + Example: " surreal export", Run: func(cmd *cobra.Command, args []string) { // Do Stuff Here },