13 lines
185 B
Bash
13 lines
185 B
Bash
#!/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"
|