summaryrefslogtreecommitdiffstats
path: root/pkg/commands/oscommands/os_windows.go
blob: 206d50433f437ede32e36a1802ab0d7db27b0164 (plain)
1
2
3
4
5
6
7
8
9
10
11
package oscommands

func getPlatform() *Platform {
	return &Platform{
		OS:           "windows",
		CatCmd:       []string{"cmd", "/c", "type"},
		Shell:        "cmd",
		ShellArg:     "/c",
		EscapedQuote: `\"`,
	}
}