The Bash declare Statement
Although rarely used, the bash declare statement does have a couple useful options. It can mark a variable as read only and also mark it as being a number only.
To declare a variable as read only, use the following statement:
declare -r varname
Consider the following script:
#!/bin/bash
a=13
declare -r a
echo $a
a=14
echo $a
When run, the second assignment will fail:
$ sh decl.sh 13 decl.sh: line 6: a: readonly variable
To declare that a variable should accept only numeric values (integers), use the following statement:
declare -i varname
Consider the following script:
#!/bin/bash
declare -i a
a=12
echo $a
a=hello
echo $a
When run, the second assignment will assign zero to the variable rather than the string "hello" that appears in the statement:
$ sh decl2.sh 12 0
The declare statment has other options; the -a option can be used to declare a variable as an array, but it's not necessary. All variables can be used as arrays without explicit definition. As a matter of fact, it appears that in a sense, all variables are arrays, and that assignment without a subscript is the same as assigning to "[0]". Consider the following script:
#!/bin/bash
a=12
echo ${a[0]}
b[0]=13
echo $b
When run it produces:
$ sh arr.sh 12 13
For further options, see the bash man page (search for "^SHELL BUILTINS", then search for "declare").
Mitch Frazier is an Associate Editor for Linux Journal.
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- Linux-Based X Terminals with XDMCP
- Readers' Choice Awards 2011
- 100% disappointed with the decision to go all digital.
- Parallel Programming with NVIDIA CUDA
- You Need A Budget
- Validate an E-Mail Address with PHP, the Right Way
- The Linux powered LAN Gaming House
- The Linux RAID-1, 4, 5 Code
- Python for Android
- Gnome3 is such a POS. No one
3 hours 54 min ago - Gnome 3 is the biggest POS
4 hours 4 min ago - I didn't knew this thing by
10 hours 8 min ago - Author's reply
13 hours 33 min ago - Link to modlys
14 hours 40 min ago - I use YNAB because of the
14 hours 51 min ago - Search
19 hours 54 min ago - Question
20 hours 17 min ago - for the record
20 hours 20 min ago - That's disappointing. Thanks
22 hours 43 min ago





Comments
RE: "All variables can be used as arrays without explicit..."
"All variables can be used as arrays without explicit definition" is not always true, at least in bash ~3.0. If you define a variable using "local" in a function, this is apparently nearly, if not exactly, the same as using "declare", which as mentioned does define a variable as local when used within a function. If when defining a variable as local you do not also use "-a", then you cannot also use the array initialization notation to treat it as an array; you end up with all initialization values in the first element of the "array" you just created. (Using "declare" unstead of "local" seemed to work just the same in my limited testing.) If you just remove the "local" declaration, your intended array works just fine, but it is now global.
Its nice to know that bash
Its nice to know that bash declare statement can be used to declare variable to accept only numeric values.
a=13 declare -r a echo
a=13
declare -r a
echo $a
a=14
echo
I can not execute this command on my pc, anyone help me?
Are you Using Windows?
It won't work if you are..png)
Perhaps if you leave a few more details...
Mitch Frazier is an Associate Editor for Linux Journal.
is linux so great??
I had the opportunity to use the linux redhat stuff about 5 years ago. It had the same amount of bugs as the windows competitor at the time. I don't understand the big hooplah. Instead of blue-screening, the PC would just shut down.
re: bash
I runned #!/bin/bash
a=13
declare -r a
echo $a
a=14
echo
but it fail , did i miss anything ? i think i did it right with commands..
Nope You Didn't Miss Anything
It's *supposed* to fail, read the paragraph after the script:
Mitch Frazier is an Associate Editor for Linux Journal.
Is there any difference
Is there any difference between using 'declare -r' and 'readonly' to set variables as read only?
No Difference
Although the man page does not explicitly say they are the same, there does not appear to be any difference in the effect that they have or the error message that's produced if you try to change one.
Mitch Frazier is an Associate Editor for Linux Journal.
Exact same
It doesn't explain it anywhere on the page, but yeah they're the same for all practical purposes.
thanks for clarity
I wasn't sure about that either thanks for clearing my confusion.
You can do these with
You can do these with typeset too and it's more portable.
to what?
More portable to what? "help typeset" says "Obsolete. See `declare'." And there's no mention of "typeset" in Posix. I was under the impression that it was a korn-shell-ism, and ksh makes little or no pretense to being a viable substiture for a standard /bin/sh, so I see no reason to worry about compatibility with it. Dash (another widely used bourne/posix shell, based on BSD's ash) has "readonly" but neither declare nor typeset, so for that particular case, I would think that "readonly" (also supported by ksh, fwiw) would be slightly more portable. Aside from that, the only factor I see for choosing between the two is that "typeset" looks like something that may not be supported for much longer.
I didn't say typeset is a
I didn't say typeset is a POSIX standard, but works with more shells, like you said ksh -- and its variants. Well, bash is the default shell on Linux, but ksh is very popular on other Unix-like systems.
The fact that typeset is obsolete in bash is surprised me. I can't see why is it good to removing typeset from bash.
help
Actually, typing "help declare" at the prompt may be quicker/easier than hunting through the very-large man page, at least to get started. (Many people don't realize that bash has built-in help for its built-in commands.)