1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-24 12:56:36 +02:00
rclone/cmd/progress_other.go

10 lines
107 B
Go
Raw Normal View History

2018-08-17 16:59:59 +01:00
//+build !windows
package cmd
import "os"
func writeToTerminal(b []byte) {
_, _ = os.Stdout.Write(b)
}