7 lines
180 B
Plaintext
7 lines
180 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Search for files in local directory and edit selected in default editor.
|
||
|
|
||
|
find . -type f | fzf --preview 'cat {}' --height 25 --layout reverse | \
|
||
|
xargs -r "$EDITOR"
|