Sponsored Content
Full Discussion: I need your help.
Operating Systems Solaris I need your help. Post 302233412 by jlliagre on Sunday 7th of September 2008 01:46:15 PM
Old 09-07-2008
Quote:
Originally Posted by era
I don't think you want the opening parentheses like that. (Or does that have some special significance in ksh?)
This optional left parenthesis is POSIX compliant. I prefer to use it to keep the parenthesis balanced in my scripts. Especially useful under vi.

Why are you suggesting to downgrade to /bin/sh which isn't POSIX compliant under Solaris and lacks many features ?
 
set(n)							       Tcl Built-In Commands							    set(n)

__________________________________________________________________________________________________________________________________________________

NAME
set - Read and write variables SYNOPSIS
set varName ?value? _________________________________________________________________ DESCRIPTION
Returns the value of variable varName. If value is specified, then set the value of varName to value, creating a new variable if one doesn't already exist, and return its value. If varName contains an open parenthesis and ends with a close parenthesis, then it refers to an array element: the characters before the first open parenthesis are the name of the array, and the characters between the parentheses are the index within the array. Otherwise varName refers to a scalar variable. Normally, varName is unqualified (does not include the names of any containing namespaces), and the variable of that name in the current namespace is read or written. If varName includes names- pace qualifiers (in the array name if it refers to an array element), the variable in the specified namespace is read or written. If no procedure is active, then varName refers to a namespace variable (global variable if the current namespace is the global namespace). If a procedure is active, then varName refers to a parameter or local variable of the procedure unless the global command was invoked to declare varName to be global, or unless a variable command was invoked to declare varName to be a namespace variable. SEE ALSO
expr(n), proc(n), trace(n), unset(n) KEYWORDS
read, write, variable Tcl set(n)
All times are GMT -4. The time now is 03:17 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy