init
This commit is contained in:
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/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"
|
||||
Reference in New Issue
Block a user