dotfiles/local/bin/edsc

14 lines
185 B
Text
Raw Normal View History

2025-05-29 23:14:29 +02:00
#!/bin/sh
if [ -z "$1" ]; then
SCRIPT=$(find . -type f | fzfse)
else
SCRIPT="$1"
fi
if [ -z "$SCRIPT" ]; then
echo 'Usage: edsc [file]'
exit 1
fi
emacsclient -c -nw "$SCRIPT"