08-30-2007
compound variable in korn shell
in a text " Korn Shell Unix programming Manual 3° Edition"
i have found this sintax to declare a compoud variable:
variable=(
[datetype] fild1 [=value]
[datetype] fild1 [=value]
)
but this sintax in ksh and sh (HP-UNIX) not work...
why?? exist another solution for this type of variable ???
10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Hi there - am newish to shell scripting and would appreciate some advice on this...
Am trying to use what I have seen called 'compound variables' in other langs but with no success in my shell script. This is the kind of thing I'm trying to do:
base_val=123
stop=3
x=1
while
do
... (3 Replies)
Discussion started by: neemic
3 Replies
2. Shell Programming and Scripting
Erase the space in assigment operator.
array_var=`expr $base_val + $x` (1 Reply)
Discussion started by: irina
1 Replies
3. UNIX for Advanced & Expert Users
Using bash, I'm trying to read a .properties file (name=value pairs), assigning an indirect variable reference for each line in the file.
The trick is that a property's value string may contain the name of a property that occurred earlier in the file, and I want the name of the 1st property to... (5 Replies)
Discussion started by: tkrussel
5 Replies
4. Shell Programming and Scripting
in a text " Korn Shell Unix programming Manual 3° Edition"
i have found this sintax to declare a compoud variable:
variable=(
fild1 (0 Replies)
Discussion started by: ZINGARO
0 Replies
5. Shell Programming and Scripting
I am using two shell scripts a.ksh and b.ksh
a.ksh
1. Sets the value
+++++++++++++++++
export USER1=abcd1
export PASSWORD=xyz
+++++++++++++++++
b.ksh
2. Second scripts calls sctipt a.ksh and uses the values set in a.ksh and pass to an executable demo... (2 Replies)
Discussion started by: kunalseth
2 Replies
6. Programming
Hi
I have the following block of code in korn shell and don't now how to refer to variable `print variable1.$dvd` ?
---
integer dvd=4
integer number=0
while (( dvd!=0 ))
do
print "Iteracja numer : $dvd"
print "$_" #it refers to $dvd var but want to refer... (3 Replies)
Discussion started by: presul
3 Replies
7. Shell Programming and Scripting
hello,
i have a variable which should have following content :
var="value1"
or
var="value2"
or
var="value2:*" # example: value2:22
how can i check :
- if the content is ok (value1 / value2* )
- the two options of "value2"
when content is example "value2:22" , i want to split... (3 Replies)
Discussion started by: bora99
3 Replies
8. Shell Programming and Scripting
Hello,
Here is my problem using KSH
I have a set of compound variables, let say cmp_var1 cmp_var2
The names of these variables are stored in an indexed array.
How can I access the subfields of these compound variables ?
I tried:
set -A cmp_varnames=(cmp_var1 cmp_var2)
for cmp in... (4 Replies)
Discussion started by: luky55
4 Replies
9. Shell Programming and Scripting
I'm using korn shell and I am wondering if it's possible to use a parameter passed into a function to build a variable name in a configuration file. I have the function in one source file, I'd like to have a global configuration file instead of hardcoding logins to each script.
So I have a... (7 Replies)
Discussion started by: mrevello
7 Replies
10. UNIX for Dummies Questions & Answers
Hi
I am using two shell scripts which are running on the system simultaneously. And in one of the script i am exporting an Integer Variable.
Now i want to use the variable in another script. But i cannot run the first script in the second as the first script has many other functions which... (3 Replies)
Discussion started by: Ajesh
3 Replies
LEARN ABOUT PHP
intldateformatter
INTLDATEFORMATTER(3) 1 INTLDATEFORMATTER(3)
The IntlDateFormatter class
INTRODUCTION
Date Formatter is a concrete class that enables locale-dependent formatting/parsing of dates using pattern strings and/or canned patterns.
This class represents the ICU date formatting functionality. It allows users to display dates in a localized format or to parse strings
into PHP date values using pattern strings and/or canned patterns.
CLASS SYNOPSIS
IntlDateFormatter
IntlDateFormatter
Methods
o public IntlDateFormatter::__construct (string $locale, int $datetype, int $timetype, [mixed $timezone = NULL], [mixed $calendar =
NULL], [string $pattern = ""])
o publicstatic IntlDateFormatter IntlDateFormatter::create (string $locale, int $datetype, int $timetype, [mixed $timezone = NULL],
[mixed $calendar = NULL], [string $pattern = ""])
o public string IntlDateFormatter::format (mixed $value)
o publicstatic string IntlDateFormatter::formatObject (object $object, [mixed $format = NULL], [string $locale = NULL])
o
int IntlDateFormatter::getCalendar (void )
o public int IntlDateFormatter::getDateType (void )
o public int IntlDateFormatter::getErrorCode (void )
o public string IntlDateFormatter::getErrorMessage (void )
o public string IntlDateFormatter::getLocale ([int $which])
o public string IntlDateFormatter::getPattern (void )
o public int IntlDateFormatter::getTimeType (void )
o public string IntlDateFormatter::getTimeZoneId (void )
o public IntlCalendar IntlDateFormatter::getCalendarObject (void )
o public IntlTimeZone IntlDateFormatter::getTimeZone (void )
o public bool IntlDateFormatter::isLenient (void )
o public array IntlDateFormatter::localtime (string $value, [int &$position])
o public int IntlDateFormatter::parse (string $value, [int &$position])
o
bool IntlDateFormatter::setCalendar (mixed $which)
o public bool IntlDateFormatter::setLenient (bool $lenient)
o public bool IntlDateFormatter::setPattern (string $pattern)
o public bool IntlDateFormatter::setTimeZoneId (string $zone)
o public boolean IntlDateFormatter::setTimeZone (mixed $zone)
SEE ALSO
oICU Date formatter
oICU Date formats
PREDEFINED CONSTANTS
These constants are used to specify different formats in the constructor for DateType and TimeType.
o IntlDateFormatter::NONE ( integer) -Do not include this element
o IntlDateFormatter::FULL ( integer) -Completely specified style (Tuesday, April 12, 1952 AD or 3:30:42pm PST)
o IntlDateFormatter::LONG ( integer) -Long style (January 12, 1952 or 3:30:32pm)
o IntlDateFormatter::MEDIUM ( integer) -Medium style (Jan 12, 1952)
o IntlDateFormatter::SHORT ( integer) -Most abbreviated style, only essential data (12/13/52 or 3:30pm)
The following int constants are used to specify the calendar. These calendars are all based directly on the Gregorian calendar. Non-Grego-
rian calendars need to be specified in locale. Examples might include locale="hi@calendar=BUDDHIST".
o IntlDateFormatter::TRADITIONAL ( integer) -Non-Gregorian Calendar
o IntlDateFormatter::GREGORIAN ( integer) -Gregorian Calendar
PHP Documentation Group INTLDATEFORMATTER(3)