Files
fzf/src/constants_unix.go
2017-02-17 13:07:45 +09:00

9 lines
165 B
Go

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