move some scripts to devel subfolder

This commit is contained in:
Alexander Gehrke 2020-07-20 16:18:36 +02:00
parent 284a454a9a
commit 74d8beff3a
8 changed files with 0 additions and 0 deletions

View file

@ -1,13 +0,0 @@
#!/bin/zsh
BINDIR=$HOME/.local/bin
if [[ -e $BINDIR/$1 ]]; then
echo Script $1 exists, opening for edit
$EDITOR $BINDIR/$1
else
touch $BINDIR/$1
chmod a+x $BINDIR/$1
echo "#!$SHELL" >> $BINDIR/$1
$EDITOR $BINDIR/$1
exit 0
fi