mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
17 lines
391 B
Go
17 lines
391 B
Go
// ================================================================
|
|
// Handling single quotes and double quotes is different on Windows unless
|
|
// particular care is taken, which is what this file does.
|
|
// ================================================================
|
|
|
|
//go:build !windows
|
|
// +build !windows
|
|
|
|
package platform
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func GetArgs() []string {
|
|
return os.Args
|
|
}
|