EnglishFrenchSpanish

OnWorks favicon

testplan9 - Online in the Cloud

Run testplan9 in OnWorks free hosting provider over Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

This is the command testplan9 that can be run in the OnWorks free hosting provider using one of our multiple free online workstations such as Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

PROGRAM:

NAME


test - set status according to condition

SYNOPSIS


test expr

DESCRIPTION


Test evaluates the expression expr. If the value is true the exit status is null;
otherwise the exit status is non-null. If there are no arguments the exit status is non-
null.

The following primitives are used to construct expr.

-r file True if the file exists (is accessible) and is readable.
-w file True if the file exists and is writable.
-x file True if the file exists and has execute permission.
-e file True if the file exists.
-f file True if the file exists and is a plain file.
-d file True if the file exists and is a directory.
-s file True if the file exists and has a size greater than zero.
-t fildes True if the open file whose file descriptor number is fildes (1 by default) is
the same file as /dev/cons.
-A file True if the file exists and is append-only.
-L file True if the file exists and is exclusive-use.
-Tfile True if the file exists and is temporary.
s1 = s2 True if the strings s1 and s2 are identical.
s1 != s2 True if the strings s1 and s2 are not identical.
s1 True if s1 is not the null string. (Deprecated.)
-n s1 True if the length of string s1 is non-zero.
-z s1 True if the length of string s1 is zero.
n1 -eq n2 True if the integers n1 and n2 are arithmetically equal. Any of the
comparisons -ne, -gt, -ge, -lt, or -le may be used in place of -eq. The
(nonstandard) construct -l string, meaning the length of string, may be used in
place of an integer.
a -nt b True if file a is newer than (modified after) file b.
a -ot b True if file a is older than (modified before) file b.
f -older t True if file f is older than (modified before) time t. If t is a integer
followed by the letters y(years), M(months), d(days), h(hours), m(minutes), or
s(seconds), it represents current time minus the specified time. If there is
no letter, it represents seconds since epoch. You can also concatenate mixed
units. For example, 3d12h means three days and twelve hours ago.

These primaries may be combined with the following operators:

! unary negation operator
-o binary or operator
-a binary and operator; higher precedence than -o
( expr ) parentheses for grouping.

The primitives -b, -u, -g, and -s return false; they are recognized for compatibility with
POSIX.

Notice that all the operators and flags are separate arguments to test. Notice also that
parentheses and equal signs are meaningful to rc and must be enclosed in quotes.

EXAMPLES


Test is a dubious way to check for specific character strings: it uses a process to do
what an rc(1) match or switch statement can do. The first example is not only inefficient
but wrong, because test understands the purported string "-c" as an option.

if (test $1 '=' "-c") echo OK # wrong!

A better way is

if (~ $1 -c) echo OK

Test whether is in the current directory.

test -f abc -o -d abc

SOURCE


/src/cmd/test.c

Use testplan9 online using onworks.net services


Free Servers & Workstations

Download Windows & Linux apps

  • 1
    PostInstallerF
    PostInstallerF
    PostInstallerF will install all the
    software that Fedora Linux and others
    doesn't include by default, after
    running Fedora for the first time. Its
    easy for...
    Download PostInstallerF
  • 2
    strace
    strace
    The strace project has been moved to
    https://strace.io. strace is a
    diagnostic, debugging and instructional
    userspace tracer for Linux. It is used
    to monitor a...
    Download strace
  • 3
    gMKVExtractGUI
    gMKVExtractGUI
    A GUI for mkvextract utility (part of
    MKVToolNix) which incorporates most (if
    not all) functionality of mkvextract and
    mkvinfo utilities. Written in C#NET 4.0,...
    Download gMKVExtractGUI
  • 4
    JasperReports Library
    JasperReports Library
    JasperReports Library is the
    world's most popular open source
    business intelligence and reporting
    engine. It is entirely written in Java
    and it is able to ...
    Download JasperReports Library
  • 5
    Frappe Books
    Frappe Books
    Frappe Books is a free and open source
    desktop book-keeping software that's
    simple and well-designed to be used by
    small businesses and freelancers. It'...
    Download Frappe Books
  • 6
    Numerical Python
    Numerical Python
    NEWS: NumPy 1.11.2 is the last release
    that will be made on sourceforge. Wheels
    for Windows, Mac, and Linux as well as
    archived source distributions can be fou...
    Download Numerical Python
  • More »

Linux commands

Ad