14 lines
185 B
Text
14 lines
185 B
Text
|
#!/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"
|