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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
%$Id: list.tex,v 1.2 96/03/30 18:03:23 al Exp $
% man commands list .
%------------------------------------------------------------------------
\section{{\tt LIST} command}
\index{list command}
\index{view circuit}
\index{connection list}
\index{parts list}
\index{list by branch}
%------------------------------------------------------------------------
\subsection{Syntax}
\begin{verse}
{\tt List} \{{\it label ...}\} \\
{\tt List} \{{\it label} - {\it label}\}
\end{verse}
%------------------------------------------------------------------------
\subsection{Purpose}
Lists the circuit in memory.
%------------------------------------------------------------------------
\subsection{Comments}
Plain {\tt List} will list the whole circuit on the console.
{\tt List} with a component label asks for that one only. Wildcards are
supported: {\tt ?} matches any character, once. {\tt *} matches zero or
more of any character.
For several components, list them.
For a range, specify two labels separated by a dash.
%------------------------------------------------------------------------
\subsection{Examples}
\begin{description}
\item[{\tt list}] List the entire circuit to the console.
\item[{\tt list R11}] Show the component {\tt R11}.
\item[{\tt list D12 - C5}] List the part of the netlist from {\tt M12} to
{\tt C5}, inclusive. {\tt D12} must be before {\tt C5} in the list.
\item[{\tt list D* C*}] List all diodes and capacitors.
\end{description}
%------------------------------------------------------------------------
%------------------------------------------------------------------------
|