mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-11 08:10:54 +00:00
f96173cbe4
Close #781
9 lines
168 B
Go
9 lines
168 B
Go
// +build !windows
|
|
|
|
package fzf
|
|
|
|
const (
|
|
// Reader
|
|
defaultCommand = `find -L . -path '*/\.*' -prune -o -type f -print -o -type l -print 2> /dev/null | sed s/^..//`
|
|
)
|