File: constants_unix.go

package info (click to toggle)
golang-github-minio-cli 1.24.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 552 kB
  • sloc: python: 241; sh: 11; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 317 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
//go:build !windows
// +build !windows

package cli

// Add default constants for non-windows environments
const (
	defaultPrompt             = "$"
	defaultEnvSetCmd          = "export"
	defaultAssignmentOperator = "="
	defaultDisableHistory     = "$ set +o history"
	defaultEnableHistory      = "$ set -o history"
)