mirror of
https://github.com/junegunn/fzf
synced 2024-11-06 21:20:28 +00:00
0c573b3dff
`TAGS=termbox make` (or `go build -tags termbox`)
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/^..//`
|
|
)
|