From 82abadcecc7534b4847238ee2a977f33256b0439 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Sun, 26 Jan 2025 11:37:22 +0000 Subject: sh --- scripts/sh/scr | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 scripts/sh/scr (limited to 'scripts/sh/scr') diff --git a/scripts/sh/scr b/scripts/sh/scr new file mode 100755 index 0000000..c0d26c3 --- /dev/null +++ b/scripts/sh/scr @@ -0,0 +1,17 @@ +#!/bin/sh +# Fuzzy finds in the scripts/sh directory. +# Programs in Rust, etc. are not treated in the same way. +# To make a new script, use "scr NAME". + +[ -z "$EDITOR" ] && echo "EDITOR not set" && exit +[ -z "$FUZZY" ] && echo "FUZZY not set" && exit + +if [ -z "$1" ] ; then + FILE="$(find "$HOME/git/neodot/scripts/sh" -type f | $FUZZY)" + [ -z "$FILE" ] && exit 0 + $EDITOR "$FILE" +else + $EDITOR "$HOME/git/neodot/scripts/sh/$1" + chmod +x "$HOME/git/neodot/scripts/sh/$1" + update 2>&1 +fi -- cgit v1.2.1