diff --git a/.travis.yml b/.travis.yml
index 7d403902b52d785e976addbefd5475ce66d6f47f..c4638d6a8d88abf2a062e06fdf90b5587aa52afe 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,4 +6,4 @@ install:
   - go get github.com/spf13/viper
   - go get gopkg.in/yaml.v2
 script:
-  - go build -o cis_kubernetes .
+  - go build -o kube-bench .
diff --git a/README.md b/README.md
index f2bfb2220cbec6756cb438bf95b4720eb226fc2e..130db22ac7f1c1a7cd7fb3a73d75d32ab7ae9386 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ If Go is installed on the target machines, you can simply clone this repository
 ```./kube-bench <master|node>```
 
 ## Usage
-```./cis_kubernetes [command]```
+```./kube-bench [command]```
 
 ```
 Available Commands:
@@ -33,7 +33,7 @@ Available Commands:
 Flags:
   -c, --check string   A comma-delimited list of checks to run as specified in CIS document. Example --check="1.1.1,1.1.2"
   -g, --group string   Run all the checks under this comma-delimited list of groups. Example --group="1.1"
-  -h, --help           help for cis_kubernetes
+  -h, --help           help for kube-bench
   --json               Output results as JSON
 ```
 
@@ -89,7 +89,3 @@ These operations are:
 - `lte`: tests if the flag value is less than or equal to the compared value.
 - `has`: tests if the flag value contains the compared value.
 - `nothave`: tests if the flag value does not contain the compared value.
-
-
-
-
diff --git a/cmd/root.go b/cmd/root.go
index 0e0e5c95e255e71998bc0b60a4e822479d8c3414..aabc2c6c87d56059ceae17e1ce145476a3b2566c 100644
--- a/cmd/root.go
+++ b/cmd/root.go
@@ -40,7 +40,7 @@ var (
 
 // RootCmd represents the base command when called without any subcommands
 var RootCmd = &cobra.Command{
-	Use:   "cis_kubernetes",
+	Use:   os.Args[0],
 	Short: "Run CIS Benchmarks checks against a Kubernetes deployment",
 	Long:  `This tool runs the CIS Kubernetes 1.6 Benchmark v1.0.0 checks.`,
 }