mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-08 10:59:46 +08:00
![David Adam (zanchey)](/assets/img/avatar_default.png)
Large list of changes, including formatting and typos for most commands. More substantive changes have been made to alias, bind, block, break, builtin, case, cd, commandline, count, else, emit, fish_config, funced, function, functions, history, math, mimedb, nextd, not, popd, prevd, pushd, pwd, random, read, set, set_color, switch, test, trap, type, ulimit, umask, and while.
30 lines
760 B
Plaintext
30 lines
760 B
Plaintext
\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> prints the number of arguments that were
|
|
passed to it. This is usually used to find out how many elements an
|
|
environment variable array contains.
|
|
|
|
\c count does not accept any options, including '-h'.
|
|
|
|
\c count exits with a non-zero exit status if no arguments were passed
|
|
to it, and with zero if at least one argument was passed.
|
|
|
|
\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'.
|