fzf/src/constants_unix.go

9 lines
168 B
Go
Raw Normal View History

// +build !windows
package fzf
const (
// Reader
defaultCommand = `find -L . -path '*/\.*' -prune -o -type f -print -o -type l -print 2> /dev/null | sed s/^..//`
)