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

« back to all changes in this revision

Viewing changes to modules/io/help/ja_JP/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:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:lang="ja" xml:id="getenv">
14
 
  <refnamediv>
15
 
    <refname>getenv</refname>
16
 
    <refpurpose> 環境変数の値を取得</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>呼び出し手順</title>
20
 
    <synopsis>env=getenv(str [, rep] )</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>パラメータ</title>
24
 
    <variablelist>
25
 
      <varlistentry>
26
 
        <term>str</term>
27
 
        <listitem>
28
 
          <para>環境変数の名前を指定する文字列</para>
29
 
        </listitem>
30
 
      </varlistentry>
31
 
      <varlistentry>
32
 
        <term>rep</term>
33
 
        <listitem>
34
 
          <para>
35
 
            オプションの文字列. このオプションの値を使用する時,
36
 
            関数 <literal>getenv</literal> は,環境変数 <literal>str</literal>
37
 
            が見つからない場合に値 <literal>rep</literal> を返します.
38
 
          </para>
39
 
        </listitem>
40
 
      </varlistentry>
41
 
      <varlistentry>
42
 
        <term>env</term>
43
 
        <listitem>
44
 
          <para>環境変数の値を有する文字列</para>
45
 
        </listitem>
46
 
      </varlistentry>
47
 
    </variablelist>
48
 
  </refsection>
49
 
  <refsection>
50
 
    <title>説明</title>
51
 
    <para>
52
 
      指定した環境変数が存在する場合,その値を返します.
53
 
    </para>
54
 
  </refsection>
55
 
  <refsection>
56
 
    <title>例</title>
57
 
    <programlisting role="example"><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>getenv</refname>
 
16
        <refpurpose> 環境変数の値を取得</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>呼び出し手順</title>
 
20
        <synopsis>env=getenv(str [, rep] )</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>パラメータ</title>
 
24
        <variablelist>
 
25
            <varlistentry>
 
26
                <term>str</term>
 
27
                <listitem>
 
28
                    <para>環境変数の名前を指定する文字列</para>
 
29
                </listitem>
 
30
            </varlistentry>
 
31
            <varlistentry>
 
32
                <term>rep</term>
 
33
                <listitem>
 
34
                    <para>
 
35
                        オプションの文字列. このオプションの値を使用する時,
 
36
                        関数 <literal>getenv</literal> は,環境変数 <literal>str</literal>
 
37
                        が見つからない場合に値 <literal>rep</literal> を返します.
 
38
                    </para>
 
39
                </listitem>
 
40
            </varlistentry>
 
41
            <varlistentry>
 
42
                <term>env</term>
 
43
                <listitem>
 
44
                    <para>環境変数の値を有する文字列</para>
 
45
                </listitem>
 
46
            </varlistentry>
 
47
        </variablelist>
 
48
    </refsection>
 
49
    <refsection>
 
50
        <title>説明</title>
 
51
        <para>
 
52
            指定した環境変数が存在する場合,その値を返します.
 
53
        </para>
 
54
    </refsection>
 
55
    <refsection>
 
56
        <title>例</title>
 
57
        <programlisting role="example"><![CDATA[ 
58
58
getenv('SCI')
59
59
getenv('FOO','foo') 
60
60
 ]]></programlisting>
61
 
  </refsection>
 
61
    </refsection>
62
62
</refentry>