2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-04 04:33:23 +00:00

fix: dont go interactive if not terminal (closes )

This commit is contained in:
sammyette 2021-06-01 22:13:33 -04:00
parent 7e970e9e81
commit 1623f0d85d
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5

12
main.go

@ -1,6 +1,7 @@
package main
import (
"bufio"
"fmt"
"io"
"os"
@ -61,6 +62,10 @@ func main() {
interactive = true
}
if fileInfo, _ := os.Stdin.Stat(); (fileInfo.Mode() & os.ModeCharDevice) == 0 {
interactive = false
}
if getopt.NArgs() > 0 {
interactive = false
}
@ -115,6 +120,13 @@ func main() {
lr = NewLineReader("")
if fileInfo, _ := os.Stdin.Stat(); (fileInfo.Mode() & os.ModeCharDevice) == 0 {
scanner := bufio.NewScanner(bufio.NewReader(os.Stdin))
for scanner.Scan() {
RunInput(scanner.Text())
}
}
if *cmdflag != "" {
RunInput(*cmdflag)
}