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

func getPlatform() *Platform {
	return &Platform{
		os:                   "windows",
		catCmd:               "type",
		shell:                "cmd",
		shellArg:             "/c",
		escapedQuote:         `\"`,
		fallbackEscapedQuote: "\\'",
	}
}