mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2025-04-05 16:51:50 +00:00
Set standard input of 'man' process to os.Stdin
This commit is contained in:
parent
41bcbe342f
commit
564daf9a7d
1
main.go
1
main.go
@ -88,6 +88,7 @@ func main() {
|
|||||||
}
|
}
|
||||||
defer os.Remove(file)
|
defer os.Remove(file)
|
||||||
cmd := exec.Command("man", file)
|
cmd := exec.Command("man", file)
|
||||||
|
cmd.Stdin = os.Stdin
|
||||||
cmd.Stdout = os.Stdout
|
cmd.Stdout = os.Stdout
|
||||||
if err := cmd.Run(); err != nil {
|
if err := cmd.Run(); err != nil {
|
||||||
fmt.Print(string(manPage))
|
fmt.Print(string(manPage))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user