summaryrefslogtreecommitdiff
path: root/scripts/project
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/project')
-rwxr-xr-xscripts/project12
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/project b/scripts/project
deleted file mode 100755
index e306dfa..0000000
--- a/scripts/project
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-if [ "$TERM" = "linux" ]; then
- exit 1
-fi
-
-dir="$(find ~/Dev ~/Dev/CPP/comp-org/ -mindepth 2 -maxdepth 2 -type d | fzf)"
-if [ -z "$dir" ]; then
- return
-else
- cd "$dir"
-fi