fzf/src/constants_unix.go

9 lines
165 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 | cut -b3-`
)