summaryrefslogtreecommitdiffstats
path: root/src/constants_unix.go
blob: 94371e62d48a1eeb2e25e899c830d8a90d1b997b (plain)
1
2
3
4
5
6
7
8
// +build !windows

package fzf

const (
	// Reader
	defaultCommand = `command find -L . -mindepth 1 \( -path '*/\.*' -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \) -prune -o -type f -print -o -type l -print 2> /dev/null | cut -b3-`
)