mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-10 20:33:48 -05:00
9 lines
165 B
Go
9 lines
165 B
Go
// +build !windows
|
|
|
|
package fzf
|
|
|
|
const (
|
|
// Reader
|
|
defaultCommand = `find . -path '*/\.*' -prune -o -type f -print -o -type l -print 2> /dev/null | sed s/^..//`
|
|
)
|