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

« back to all changes in this revision

Viewing changes to modules/fileio/help/ja_JP/directory/chdir.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:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<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="chdir">
 
3
    <refnamediv>
 
4
        <refname>chdir</refname>
 
5
        <refpurpose>Scilab カレントディレクトリを変更する</refpurpose>
 
6
    </refnamediv>
 
7
    <refnamediv xml:id="cd">
 
8
        <refname>cd</refname>
 
9
        <refpurpose>Scilab カレントディレクトリを変更する</refpurpose>
 
10
    </refnamediv>
 
11
    <refsynopsisdiv>
 
12
        <title>呼び出し手順</title>
 
13
        <synopsis>b=chdir(path)
 
14
            realpath=cd(path)
 
15
            cd path
 
16
        </synopsis>
 
17
    </refsynopsisdiv>
 
18
    <refsection>
 
19
        <title>パラメータ</title>
 
20
        <variablelist>
 
21
            <varlistentry>
 
22
                <term>b</term>
 
23
                <listitem>
 
24
                    <para>chdir処理がokの場合に論理値 %t. </para>
 
25
                </listitem>
 
26
            </varlistentry>
 
27
            <varlistentry>
 
28
                <term>path</term>
 
29
                <listitem>
 
30
                    <para>文字列</para>
 
31
                </listitem>
 
32
            </varlistentry>
 
33
            <varlistentry>
 
34
                <term>realpath</term>
 
35
                <listitem>
 
36
                    <para>文字列, パス名変換の後に実際のパス名(以下参照)</para>
 
37
                </listitem>
 
38
            </varlistentry>
 
39
        </variablelist>
 
40
    </refsection>
 
41
    <refsection>
 
42
        <title>説明</title>
 
43
        <para>
 
44
            カレントの Scilab ディレクトリを<literal>path</literal>
 
45
            で指定したディレクトリに変更します. 
 
46
            パス変換が実行されるため,例えば,
 
47
            <literal>SCI/modules/core/macros</literal>は unix および windows の両方で
 
48
            有効であることに注意してください.
 
49
            path が空の場合, "home" ディレクトリに変更されます.
 
50
        </para>
 
51
    </refsection>
 
52
    <refsection>
 
53
        <title>例</title>
 
54
        <programlisting role="example"><![CDATA[ 
 
55
chdir(TMPDIR);
 
56
pwd
 
57
cd 
 
58
cd SCI
 
59
 ]]></programlisting>
 
60
    </refsection>
 
61
    <refsection role="see also">
 
62
        <title>参照</title>
 
63
        <simplelist type="inline">
 
64
            <member>
 
65
                <link linkend="pwd">pwd</link>
 
66
            </member>
 
67
        </simplelist>
 
68
    </refsection>
 
69
</refentry>