mirror of
https://github.com/junegunn/fzf.git
synced 2025-12-11 07:01:56 +08:00
9 lines
165 B
Go
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-`
|
|
)
|