27 lines
434 B
Go
27 lines
434 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
|
|
"tuxpa.in/a/zlog"
|
|
)
|
|
|
|
func isInputFromPipe() bool {
|
|
fileInfo, _ := os.Stdin.Stat()
|
|
return fileInfo.Mode()&os.ModeCharDevice == 0
|
|
}
|
|
|
|
func main() {
|
|
if !isInputFromPipe() {
|
|
fmt.Println("The command is intended to work with pipes.")
|
|
fmt.Println("Usage: app_with_zerolog | 2> >(prettylog)")
|
|
os.Exit(1)
|
|
return
|
|
}
|
|
|
|
writer := zlog.NewConsoleWriter()
|
|
_, _ = io.Copy(writer, os.Stdin)
|
|
}
|