blob: c0d26c32475d2040c754f833e88b9de7af65f200 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|