2012-07-03 21:54:00 +00:00
\section test test - perform tests on files and text
\subsection test-synopsis Synopsis
2014-08-01 12:25:41 +00:00
\fish{synopsis}
2014-08-01 02:37:32 +00:00
test [EXPRESSION]
2014-12-28 11:03:26 +00:00
[ [EXPRESSION] ]
2014-08-01 02:37:32 +00:00
\endfish
2012-07-03 21:54:00 +00:00
Help cleanup
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.
2013-05-12 07:56:01 +00:00
\subsection test-description Description
2012-07-03 21:54:00 +00:00
2014-09-03 14:10:53 +00:00
Tests the expression given and sets the exit status to 0 if true, and 1 if false. An expression is made up of one or more operators and their arguments.
Help cleanup
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.
2013-05-12 07:56:01 +00:00
2014-12-28 11:03:26 +00:00
The first form (`test`) is preferred. For compatibility with other shells, the second form is available: a matching pair of square brackets (`[ [EXPRESSION ] ]`).
2016-02-28 16:50:41 +00:00
This test is mostly POSIX-compatible.
\subsection test-files Operators for files and directories
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-b FILE` returns true if `FILE` is a block device.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-c FILE` returns true if `FILE` is a character device.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-d FILE` returns true if `FILE` is a directory.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-e FILE` returns true if `FILE` exists.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-f FILE` returns true if `FILE` is a regular file.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-g FILE` returns true if `FILE` has the set-group-ID bit set.
2014-09-03 14:10:53 +00:00
- `-G FILE` returns true if `FILE` exists and has the same group ID as the current user.
2014-08-01 02:37:32 +00:00
- `-L FILE` returns true if `FILE` is a symbolic link.
2014-09-03 14:10:53 +00:00
- `-O FILE` returns true if `FILE` exists and is owned by the current user.
2014-08-01 02:37:32 +00:00
- `-p FILE` returns true if `FILE` is a named pipe.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-r FILE` returns true if `FILE` is marked as readable.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-s FILE` returns true if the size of `FILE` is greater than zero.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-S FILE` returns true if `FILE` is a socket.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-t FD` returns true if the file descriptor `FD` is a terminal (TTY).
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-u FILE` returns true if `FILE` has the set-user-ID bit set.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-w FILE` returns true if `FILE` is marked as writable; note that this does not check if the filesystem is read-only.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-x FILE` returns true if `FILE` is marked as executable.
2013-07-29 08:06:05 +00:00
2016-02-28 16:50:41 +00:00
\subsection test-strings Operators for text strings
2014-09-03 14:10:53 +00:00
- `STRING1 = STRING2` returns true if the strings `STRING1` and `STRING2` are identical.
- `STRING1 != STRING2` returns true if the strings `STRING1` and `STRING2` are not identical.
2014-08-01 02:37:32 +00:00
- `-n STRING` returns true if the length of `STRING` is non-zero.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `-z STRING` returns true if the length of `STRING` is zero.
2013-07-29 08:06:05 +00:00
2016-02-28 16:50:41 +00:00
\subsection test-numbers Operators to compare and examine numbers
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `NUM1 -eq NUM2` returns true if `NUM1` and `NUM2` are numerically equal.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `NUM1 -ne NUM2` returns true if `NUM1` and `NUM2` are not numerically equal.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `NUM1 -gt NUM2` returns true if `NUM1` is greater than `NUM2`.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `NUM1 -ge NUM2` returns true if `NUM1` is greater than or equal to `NUM2`.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `NUM1 -lt NUM2` returns true if `NUM1` is less than `NUM2`.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `NUM1 -le NUM2` returns true if `NUM1` is less than or equal to `NUM2`.
2013-07-29 08:06:05 +00:00
2014-09-03 14:10:53 +00:00
Note that only integers are supported. For more complex mathematical operations, including fractions, the `env` program may be useful. Consult the documentation for your operating system.
2013-07-29 08:06:05 +00:00
2016-02-28 16:50:41 +00:00
\subsection test-combinators Operators to combine expressions
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `COND1 -a COND2` returns true if both `COND1` and `COND2` are true.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `COND1 -o COND2` returns true if either `COND1` or `COND2` are true.
2013-07-29 08:06:05 +00:00
2014-08-01 02:37:32 +00:00
Expressions can be inverted using the `!` operator:
2014-09-03 14:10:53 +00:00
- `! EXPRESSION` returns true if `EXPRESSION` is false, and false if `EXPRESSION` is true.
2012-07-03 21:54:00 +00:00
2013-07-29 08:06:05 +00:00
Expressions can be grouped using parentheses.
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
- `( EXPRESSION )` returns the value of `EXPRESSION`.
2014-09-03 14:10:53 +00:00
Note that parentheses will usually require escaping with `\(` to avoid being interpreted as a command substitution.
2013-07-29 08:06:05 +00:00
\subsection test-example Examples
2014-08-01 02:37:32 +00:00
If the `/tmp` directory exists, copy the `/etc/motd` file to it:
2013-07-29 08:06:05 +00:00
2014-08-01 02:37:32 +00:00
\fish
2013-07-29 08:06:05 +00:00
if test -d /tmp
cp /etc/motd /tmp/motd
end
2014-08-01 02:37:32 +00:00
\endfish
2013-07-29 08:06:05 +00:00
2014-09-03 14:10:53 +00:00
If the variable `MANPATH` is defined and not empty, print the contents. (If `MANPATH` is not defined, then it will expand to zero arguments, unless quoted.)
2012-07-03 21:54:00 +00:00
2014-09-03 14:10:53 +00:00
\fish
2014-07-29 21:44:51 +00:00
if test -n "$MANPATH"
2013-07-29 08:06:05 +00:00
echo $MANPATH
Help cleanup
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.
2013-05-12 07:56:01 +00:00
end
2014-08-01 02:37:32 +00:00
\endfish
2013-07-29 08:06:05 +00:00
2014-09-03 14:10:53 +00:00
Parentheses and the `-o` and `-a` operators can be combined to produce more complicated expressions. In this example, success is printed if there is a `/foo` or `/bar` file as well as a `/baz` or `/bat` file.
2013-07-29 08:06:05 +00:00
2014-08-01 02:37:32 +00:00
\fish
if test \( -f /foo -o -f /bar \) -a \( -f /baz -o -f /bat \)
2013-07-29 08:06:05 +00:00
echo Success.
end.
2014-08-01 02:37:32 +00:00
\endfish
2013-07-29 08:06:05 +00:00
2016-02-28 16:50:41 +00:00
Numerical comparisons will simply fail if one of the operands is not a number:
\fish
if test 42 -eq "The answer to life, the universe and everything"
echo So long and thanks for all the fish # will not be executed
end
\endfish
A common comparison is with $status:
\fish
if test $status -eq 0
echo "Previous command succeeded"
end
\endfish
2014-08-19 12:41:23 +00:00
2013-07-29 08:06:05 +00:00
\subsection test-standards Standards
2014-09-03 14:10:53 +00:00
`test` implements a subset of the <a href="http://www.unix.com/man-page/POSIX/1/test/">IEEE Std 1003.1-2008 (POSIX.1) standard</a>. The following exceptions apply:
2014-08-01 02:37:32 +00:00
- The `<` and `>` operators for comparing strings are not implemented.
2014-09-03 14:10:53 +00:00
- Because this test is a shell builtin and not a standalone utility, using the -c flag on a special file descriptors like standard input and output may not return the same result when invoked from within a pipe as one would expect when invoking the `test` utility in another shell.
2012-07-03 21:54:00 +00:00
2014-09-03 14:10:53 +00:00
In cases such as this, one can use `command` `test` to explicitly use the system's standalone `test` rather than this `builtin` `test`.