fzf/src/constants_unix.go
2017-01-16 12:01:58 +09:00

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/^..//`
)