~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/io/help/pt_BR/getenv.xml

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 *
12
12
 -->
13
13
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:ns5="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:id="getenv" xml:lang="en">
14
 
  <refnamediv>
15
 
    <refname>getenv</refname>
16
 
    <refpurpose>retorna o valor de uma vari�vel de ambiente</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Seq��ncia de Chamamento</title>
20
 
    <synopsis>env=getenv(str [, rep] )</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>Par�metros</title>
24
 
    <variablelist>
25
 
      <varlistentry>
26
 
        <term>str</term>
27
 
        <listitem>
28
 
          <para>string especificando o nome da vari�vel de ambiente; rep : um
29
 
            string opcional. Quando este valor opcional � usado, a fun��o
30
 
            <literal>getenv</literal> retorna o valor <literal>rep</literal>
31
 
            quando a vari�vel de ambiente <literal>str</literal> n�o �
32
 
            encontrada. 
33
 
          </para>
34
 
        </listitem>
35
 
      </varlistentry>
36
 
      <varlistentry>
37
 
        <term>env</term>
38
 
        <listitem>
39
 
          <para>string que cont�m o valor da vari�vel de ambiente</para>
40
 
        </listitem>
41
 
      </varlistentry>
42
 
    </variablelist>
43
 
  </refsection>
44
 
  <refsection>
45
 
    <title>Descri��o</title>
46
 
    <para>Retorna o valor de uma vari�vel de ambiente, se existir.</para>
47
 
  </refsection>
48
 
  <refsection>
49
 
    <title>Exemplos</title>
50
 
    <programlisting role="example"><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>getenv</refname>
 
16
        <refpurpose>retorna o valor de uma vari�vel de ambiente</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Seq��ncia de Chamamento</title>
 
20
        <synopsis>env=getenv(str [, rep] )</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>Par�metros</title>
 
24
        <variablelist>
 
25
            <varlistentry>
 
26
                <term>str</term>
 
27
                <listitem>
 
28
                    <para>string especificando o nome da vari�vel de ambiente; rep : um
 
29
                        string opcional. Quando este valor opcional � usado, a fun��o
 
30
                        <literal>getenv</literal> retorna o valor <literal>rep</literal>
 
31
                        quando a vari�vel de ambiente <literal>str</literal> n�o �
 
32
                        encontrada. 
 
33
                    </para>
 
34
                </listitem>
 
35
            </varlistentry>
 
36
            <varlistentry>
 
37
                <term>env</term>
 
38
                <listitem>
 
39
                    <para>string que cont�m o valor da vari�vel de ambiente</para>
 
40
                </listitem>
 
41
            </varlistentry>
 
42
        </variablelist>
 
43
    </refsection>
 
44
    <refsection>
 
45
        <title>Descri��o</title>
 
46
        <para>Retorna o valor de uma vari�vel de ambiente, se existir.</para>
 
47
    </refsection>
 
48
    <refsection>
 
49
        <title>Exemplos</title>
 
50
        <programlisting role="example"><![CDATA[ 
51
51
getenv('SCI')
52
52
getenv('FOO','foo') 
53
53
 ]]></programlisting>
54
 
  </refsection>
 
54
    </refsection>
55
55
</refentry>