xref: /illumos-gate/usr/src/man/man1/readonly.1 (revision bbf21555)
te
Copyright (c) 2007 Sun Microsystems, Inc. - All Rights Reserved.
Copyright 1989 AT&T
Portions Copyright (c) 1982-2007 AT&T Knowledge Ventures
The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
READONLY 1 "April 9, 2016"
NAME
readonly - shell built-in function to protect the value of the given variable from reassignment
SYNOPSIS
"sh"

readonly [name]...
"ksh"

**readonly [name [= value]]...

**readonly -p
"ksh93"

++readonly [-p] [name [= value]]...
DESCRIPTION
"sh"

The given names are marked readonly and the values of these names may not be changed by subsequent assignment. If no arguments are given, a list of all readonly names is printed.

"ksh"

The given names are marked readonly and these names cannot be changed by subsequent assignment.

When -p is specified, readonly writes to the standard output the names and values of all read-only variables, in the following format:

"readonly %s=%s\en", name, value

if name is set, and:

"readonly $s\en", name

if name is unset.

The shell formats the output, including the proper use of quoting, so that it is suitable for reinput to the shell as commands that achieve the same value and readonly attribute-setting results in a shell execution environment in which:

1. Variables with values set at the time they were output do not have the readonly attribute set.

2. Variables that were unset at the time they were output do not have a value at the time at which the saved output is re-input to the shell.

On this manual page, ksh(1) commands that are preceded by one or two ** (asterisks) are treated specially in the following ways:

1. Variable assignment lists preceding the command remain in effect when the command completes.

2. I/O redirections are processed after variable assignments.

3. Errors cause a script that contains them to abort.

4. Words, following a command preceded by ** that are in the format of a variable assignment, are expanded with the same rules as a variable assignment. This means that tilde substitution is performed after the = sign and word splitting and file name generation are not performed.

"ksh93"

readonly sets the readonly attribute on each of the variables specified by name which prevents their values from being changed. If =value is specified, the variable name is set to value before the variable is made readonly.

If no names are specified then the names and values of all readonly variables are written to standard output.

readonly is built-in to the shell as a declaration command so that field splitting and pathname expansion are not performed on the arguments. Tilde expansion occurs on value. -p

Causes the output to be in a form of readonly commands that can be used as input to the shell to recreate the current set of readonly variables.

On this manual page, ksh93(1) commands that are preceded by one or two + symbols are treated specially in the following ways:

1. Variable assignment lists preceding the command remain in effect when the command completes.

2. I/O redirections are processed after variable assignments.

3. Errors cause a script that contains them to abort.

4. They are not valid function names.

5. Words, following a command preceded by ++ that are in the format of a variable assignment, are expanded with the same rules as a variable assignment. This means that tilde substitution is performed after the = sign and field splitting and file name generation are not performed.

EXIT STATUS
"ksh93"

The following exit values are returned: 0

Successful completion.

>0

An error occurred.

SEE ALSO

ksh (1), ksh93 (1), sh (1), typeset (1), attributes (7)