From 83b7ac882d68cacfebf58cc53e426da3e823273b Mon Sep 17 00:00:00 2001
From: roadscape <roadscape@users.noreply.github.com>
Date: Thu, 1 Mar 2018 15:46:24 -0600
Subject: [PATCH] move tools to bin

---
 .gitignore       | 2 ++
 grep => bin/grep | 0
 lint => bin/lint | 0
 bin/profile      | 2 ++
 4 files changed, 4 insertions(+)
 rename grep => bin/grep (100%)
 rename lint => bin/lint (100%)
 create mode 100755 bin/profile

diff --git a/.gitignore b/.gitignore
index 44a49ca35..0d16ac092 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,8 @@
 checkpoints/*.json.lst
 hive.conf
 docs/hive
+grep
+lint
 
 # OSX
 .DS_Store
diff --git a/grep b/bin/grep
similarity index 100%
rename from grep
rename to bin/grep
diff --git a/lint b/bin/lint
similarity index 100%
rename from lint
rename to bin/lint
diff --git a/bin/profile b/bin/profile
new file mode 100755
index 000000000..9ff625a6e
--- /dev/null
+++ b/bin/profile
@@ -0,0 +1,2 @@
+python3 -m cProfile -s cumtime hive/cli.py > profile.out
+less profile.out
-- 
GitLab