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" xmlns:scilab="http://www.scilab.org" xml:lang="en" xml:id="whos">
4 <refname>whos</refname>
5 <refpurpose>listing of variables in long form</refpurpose>
8 <title>Calling Sequence</title>
16 <title>Arguments</title>
22 a name of selected variable type (see <link linkend="typeof">typeof</link>)
29 <para>first characters of selected names</para>
35 <title>Description</title>
37 <code>whos()</code> displays all current variable names
38 sorted by name (case insensitive), types and memory used.
41 <literal>whos -type typ</literal> displays all current variables with specified type <varname>typ</varname>.
44 <literal>whos -name nam</literal> displays all current variables whose names begin with <varname>nam</varname>.
48 Note: If a variable is global, a <literal>*</literal> appears after its type name.
52 <title>Examples</title>
53 <programlisting role="example"><![CDATA[
60 <refsection role="see also">
61 <title>See Also</title>
62 <simplelist type="inline">
64 <link linkend="who">who</link>
67 <link linkend="who_user">who_user</link>
70 <link linkend="typeof">typeof</link>