aboutsummaryrefslogtreecommitdiffstats
path: root/.local/bin/fslcd
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/fslcd')
-rwxr-xr-x.local/bin/fslcd10
1 files changed, 0 insertions, 10 deletions
diff --git a/.local/bin/fslcd b/.local/bin/fslcd
deleted file mode 100755
index 4045ff9..0000000
--- a/.local/bin/fslcd
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-# script to quickly get to any fossil repo using fzf
-
-main() {
- _fsl_checkout=$(fossil all ls -c | fzf +m) &&
- cd "$_fsl_checkout" || return
-}
-
-main "$@"