func os.Setenv

12 uses

	os (current package)
		env.go#L119: func Setenv(key, value string) error {

	src.elv.sh/pkg/eval
		builtin_fn_cmd_unix.go#L63: 	os.Setenv(env.SHLVL, strconv.Itoa(i-1))
		builtin_fn_env.go#L51: 		"set-env":   os.Setenv,
		eval.go#L374: 	os.Setenv(env.PWD, pwd)

	src.elv.sh/pkg/eval/vars
		env.go#L16: 		os.Setenv(ev.name, s)
		env_list.go#L87: 	os.Setenv(envli.envName, strings.Join(paths, pathListSeparator))

	src.elv.sh/pkg/shell
		shell.go#L83: 	os.Setenv(env.SHLVL, strconv.Itoa(i+1))
		shell.go#L91: 		return func() { os.Setenv(name, v) }

	src.elv.sh/pkg/testutil
		temp_env.go#L9: 	os.Setenv(name, value)
		temp_env.go#L10: 	return func() { os.Setenv(name, oldValue) }
		testdir.go#L58: 	os.Setenv(env.HOME, tmpHome)
		testdir.go#L61: 		os.Setenv(env.HOME, oldHome)