summary refs log tree commit diff stats
path: root/cmd/indus/main.go
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-03-22 14:05:00 +0530
committerAndinus <andinus@nand.sh>2020-03-22 14:05:00 +0530
commite0900e1cfe0b2a7961ed690dfcce62364e1c88a4 (patch)
tree232cad5f3aa1010dfe087598b0b9e5c4fadcfa1a /cmd/indus/main.go
parent9fde6e5a892b228c2d64af05b02380847573c832 (diff)
downloadindus-e0900e1cfe0b2a7961ed690dfcce62364e1c88a4.tar.gz
Add version command & use extract instead of description v0.1.0
Description is nice but most of the words that I lookup have better
explanation in extract.
Diffstat (limited to 'cmd/indus/main.go')
-rw-r--r--cmd/indus/main.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd/indus/main.go b/cmd/indus/main.go
index ce3aa91..74a1b49 100644
--- a/cmd/indus/main.go
+++ b/cmd/indus/main.go
@@ -3,6 +3,7 @@ package main
 import (
 	"fmt"
 	"log"
+	"os"
 
 	"framagit.org/andinus/indus/clipboard"
 	"framagit.org/andinus/indus/fetch"
@@ -10,6 +11,11 @@ import (
 )
 
 func main() {
+	if os.Args[1] == "version" {
+		fmt.Println("Indus v0.1.0")
+		os.Exit(0)
+	}
+
 	// Get the primary clipboard selection.
 	sel, err := clipboard.GetSel()
 	if err != nil {