1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>PWD Print Working Directory Function
</TITLE>
</HEAD>
<BODY>
<H2>PWD Print Working Directory Function
</H2>
<P>
Section: <A HREF=sec_os.html> Operating System Functions </A>
<H3>Usage</H3>
Returns a <code>string</code> describing the current working directory. The general syntax for its use is
<PRE>
y = pwd
</PRE>
<P>
<H3>Example</H3>
The <code>pwd</code> function is fairly straightforward.
<PRE>
--> pwd
ans =
/home/basu/dev/branches/FreeMat4/help/tmp
</PRE>
<P>
</BODY>
</HTML>
|