mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
0c877183b9
darcs-hash:20051207155717-ac50b-6146b02bd8aff0fd27816acd5e31b38093d8575d.gz
33 lines
1 KiB
Text
33 lines
1 KiB
Text
|
|
\section count count - Count the number of elements of an array
|
|
|
|
\subsection count-synopsis Synopsis
|
|
<tt>count $VARIABLE</tt>
|
|
|
|
\subsection count-description Description
|
|
|
|
<tt>count</tt> returns the number of arguments that were passed to
|
|
it. This is usually used to find out how many elements an environment
|
|
variable array contains, but this is not the only potential usage for
|
|
the count command.
|
|
|
|
The count command does not accept any options, not even '-h'. This way
|
|
the user does not have to worry about an array containing elements
|
|
such as dashes. \c fish performs a special check when invoking the
|
|
count program, and if the user uses a help option, this help page is
|
|
displayed, but if a help option is contained inside of a variable or
|
|
is the result of expansion, it will be passed on to the count program.
|
|
|
|
\subsection count-example Example
|
|
|
|
<pre>
|
|
count $PATH
|
|
</pre>
|
|
|
|
returns the number of directories in the users PATH variable.
|
|
|
|
<pre>
|
|
count *.txt
|
|
</pre>
|
|
|
|
returns the number of files in the current working directory ending with the suffix '.txt'.
|