Home > Articles > Operating Systems, Server > Linux/UNIX/Open Source

Scalar

Two types of variables exist in the Korn shell. The first is a string; the second is a number. Of the numbers, two types are available: integers and floating-point. Most Korn shell implementations support integer numbers only. Korn shell 93, however, supports floating-point numbers. Integers are whole numbers, such as 14 and -999. Floating-points are numbers that can contain a fraction, such as 3.14159 or -99.54.

A scalar is your basic name-value pair that has been discussed in this book. A scalar has a varname and a value. That value can be accessed and assigned by the programmer, as is shown in the next two sections.

Accessing

To this point, the discussion has indicated that a variable has a value. The question therefore becomes, How do you access the value of the variable? Fortunately, the answer is simple. The dollar sign ($) preceding the variable name is used to access the value of the variable.

As an example, look at the following work that was done at the command line:

$ echo PS1
PS1
$ echo $PS1
$ # Displays the contents of PS1 which is the $

The command echo is used to show values. In the first line of the previous code, PS1 is echoed. Sure enough, the shell returns PS1. When the dollar sign is placed before the varname, $PS1, the shell returns the value associated with the variable PS1 (PS1 means prompt string number one).

Assigning

Assigning a value to a varname can be accomplished by placing an equal sign between the varname and the value. A space can't exist either before or after the equal sign. Although you might not have thought about it, you have already seen the assigning of variables in action when you looked at the .profile file in Chapter 1. Here are some examples from that file:

HISTSIZE=1000
HISTFILESIZE=1000

If a space is used in the value, the value must be placed within quotes, as seen in the following examples:

KSH_VERSION='@(#)PD KSH v5.2.14 99/07/13.2'
PS1='$ '

More on quoting is discussed in Chapter 5, "Quoting." In the following example, three variables are defined as integers:

integer x=0
integer y=1000
integer Num=0

typeset

The typeset command is used to define variables. Many variables have aliases that are actually typeset commands. For example, integer, from the previous section, is an alias for typeset -i. The syntax for typeset is

typeset [+-AHlnprtux] [+-ELFRZi[n]] [name[=value]]

This command is used to set and unset attributes for variables, or to list the varnames and attributes of all variables.

Table 3.1 lists many commonly used attributes and their meanings. Note that not all of these are compatible with all versions of UNIX/Linux. Some of these are specific to Korn Shell 93. Check the man pages for your distribution of UNIX/Linux for a complete listing.

Table 3.1  Typeset attributes

Attribute

Meaning

-

Used to set attributes after setting value(s)

+

Used to unset attributes after setting values

-A

Associative array

-E

Exponential number; n specifies the significant digits

-F

Floating-point number; n specifies the number of decimal places (ksh 93)

-i

Integer; n specifies the arithmetic base

-l

Lowercase

-L

Left justifies; n specifies field width

-LZ

Left justifies and strips leading zeros; n specifies field width

-n

Name reference

-p

Displays variable names, attributes, and values of all variables

-R

Right justifies; n specifies field width

-r

Read-only

-RZ

Right justifies; n specifies field width and fills with leading zeros

-u

Uppercase

-x

Export

-Z

Zero-filled; n specifies field width; same as -RZ


Here are some examples using typeset. The first displays the names and attributes of all variables:

$ typeset –p # Print typeset variables
readonly HISTFILESIZE=1000
readonly HISTSIZE=1000
readonly HOME=/home/shell
readonly HOSTCHAR=MOOSE
readonly HOSTNAME=moose.net
readonly IFS='
'
readonly INPUTRC=/etc/inputrc
readonly KDEDIR=/usr
readonly KSH_VERSION='@(#)PD KSH v5.2.14 99/07/13.2'
readonly LANG=en_US
readonly LC_ALL=en_US
readonly LINES=53
readonly LINGUAS=en_US
readonly LOGNAME=shell
readonly MAIL=/var/spool/mail/shell
readonly MAILCHECK=600
readonly OPTIND=1
readonly PATH=/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/shell:/home/
shell/bin:/usr/X11R6/bin
readonly PPID=28568
readonly PS1='$ '
readonly PS2='> '
readonly PS3='#? '
readonly PS4='+ '
readonly PWD=/home/shell
readonly QTDIR=/usr/lib/qt-2.0.1
readonly RANDOM=5837
readonly SECONDS=13191
readonly SHELL=/bin/ksh
readonly TERM=vt100
readonly TMOUT=0
readonly USER=shell
readonly _=-p
readonly kdepath=/usr/bin

The next two examples show initializing and assigning values to two new variables:

$ typeset Program=$0
$ typeset host='hostname'

The following example (note, this does not work in Linux or any ksh earlier than 93 because they do not recognize the -F attribute) makes salary a floating-point variable that prints two spaces after the decimal point:

$ typeset -F2 salary

Throughout this book, if an alias for a typeset is available, it usually is used because it is easier to remember (and tends to be a little more cross-platform friendly).

Four Common Errors

You should watch out for four common errors when assigning and accessing variables. These errors do not necessarily produce syntax errors, which makes them an even worse enemy.

The first common error is accessing the variable incorrectly. The following example shows this error:

$ WIFE=Dana
$ echo $WIFE
Dana
$ $WIFE=Computer
ksh: Dana=Computer: not found

More than likely, the previous example is an attempt to set the varname WIFE equal to Computer. However, with the dollar sign there, the shell returns the value of WIFE and is left with Dana=Computer, which is not correct. If the value of WIFE were not previously set, a slightly different error would occur, as shown in the next example:

$ $WIFE=Dana
ksh: =Dana: not found

The second common error is in not having the dollar sign. The following example shows this error, which is the same error shown previously in the chapter:

$ echo PS1
PS1

In this example, the user is trying to access the value associated with the varname PS1. By not having the dollar sign, it returns the string PS1 instead of the value of PS1. This type of error is much more difficult to catch because no error occurs from the computer's perspective; it just did what the programmer told it to do.

The third common error is assigning a variable that has been previously defined. This is an error despite the fact that it works. This one, similar to the previous one, falls into the category of the computer doing what you said, and not what you meant. The following code shows an example of this:

$ cat assigning
#!/bin/ksh

x=4
y=10

while [ $x -le $y ]
do
  echo $x
  ((x=x+1))
  if [ $x -eq $y ]
  then ((x=4))
  fi

done

This code, although syntactically accurate, is an endless loop because reassigning x means that whenever x becomes equal to y, its value is reset to 4:

$ assigning
4
5
6
7
8
9
4
5
6
7
8
9
4
5
6
7
(This continues ad infinitum or until Ctrl+C is pressed!)

Finally, the fourth common error that a programmer can make is assigning a variable if that variable is not previously defined. A small modification to the previous script accomplishes this. The modification has been bolded to make it easier to find:

#!/bin/ksh

x=4
y=10

while [ $x -le $y ]
do
  echo $x
  ((x=x+1))
  if [ $x -eq $y ]
  then ((x=z))
  fi

done

The change is that when x equals y, x is set to z. Unfortunately, z has not been previously defined. The question therefore is what happens when the program is executed? The following code shows the result:

$ assigning
4
5
6
7
8
9
0
1
2
3
4
5
6
7
8
9
0
(This continues ad infintum or until Ctrl+C is pressed!)

The shell automatically sets the undefined z to have a value of zero. Notice that the script will still run forever and that no error is ever produced.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020