Skip to content

Instantly share code, notes, and snippets.

@ericfialkowski
Created April 19, 2019 14:55
Show Gist options
  • Save ericfialkowski/73723ce3bebc02150c001f28ad15e028 to your computer and use it in GitHub Desktop.
Save ericfialkowski/73723ce3bebc02150c001f28ad15e028 to your computer and use it in GitHub Desktop.
Simple utility to echo w/o newline for windows cmd.exe users
package main
import (
"fmt"
"os"
"strings"
)
func main() {
msg := os.Args[1:]
fmt.Printf("%s", strings.Join(msg, " "))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment