unix

package
v0.81.0-dev-2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 19, 2024 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Cmd = &cobra.Command{
	Use:   "prefix",
	Short: "Prefix stdin with timestap",
	Args:  cobra.NoArgs,
	Run: func(c *cobra.Command, args []string) {
		start := time.Now()
		s := bufio.NewScanner(os.Stdin)
		for s.Scan() {
			since := time.Since(start)
			if !CmdFlagNoTimestamp {
				fmt.Printf("%s ", time.Now().Format("2006-01-02 15:04:05"))
			}
			if !CmdFlagNoSince {
				fmt.Printf("%s ", time_utils.DurationToString(since))
			}
			if CmdFlagSeparator {
				fmt.Print("| ")
			}
			fmt.Println(s.Text())
		}
	},
}
View Source
var CmdFlagNoSince bool
View Source
var CmdFlagNoTimestamp bool
View Source
var CmdFlagSeparator bool

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL