mirror of
https://github.com/restic/restic.git
synced 2025-10-21 00:23:21 +00:00
30 lines
556 B
Go
30 lines
556 B
Go
![]() |
package terminal
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"golang.org/x/term"
|
||
|
)
|
||
|
|
||
|
func StdinIsTerminal() bool {
|
||
|
return term.IsTerminal(int(os.Stdin.Fd()))
|
||
|
}
|
||
|
|
||
|
func StdoutIsTerminal() bool {
|
||
|
// mintty on windows can use pipes which behave like a posix terminal,
|
||
|
// but which are not a terminal handle
|
||
|
return term.IsTerminal(int(os.Stdout.Fd())) || StdoutCanUpdateStatus()
|
||
|
}
|
||
|
|
||
|
func StdoutCanUpdateStatus() bool {
|
||
|
return CanUpdateStatus(os.Stdout.Fd())
|
||
|
}
|
||
|
|
||
|
func StdoutTerminalWidth() int {
|
||
|
w, _, err := term.GetSize(int(os.Stdout.Fd()))
|
||
|
if err != nil {
|
||
|
return 0
|
||
|
}
|
||
|
return w
|
||
|
}
|