zplug-check(1)
==============
Masaki Ishiyama b4b4r07@gmail.com
:man manual: ZPLUG Manual

NAME
----
zplug-check - Return true if all packages are installed, false otherwise


SYNOPSIS
--------
[verse]
'zplug check' [--verbose] ['"username/reponame"']

    The word 'package' refers to the string in the format: "username/reponame".


DESCRIPTION
-----------
It's possible to confirm whether the package is installed.
Besides, if no packages are given as the arguments,
check command checks whether there is a package that has not been installed.


OPTIONS
-------
*--verbose*::
    Be verbose.


EXAMPLES
--------

Installation check:

------------
if ! zplug check --verbose; then
    printf "Install? [y/N]: "
    if read -q; then
        echo; zplug install
    fi
fi

------------

The above code means that the packages will be installed
if there is a package that has not been installed.

Installation check from CLI:

------------
$ zplug check --verbose 'some_author/some_repo'
- some_author/some_repo: not installed
------------


SEE ALSO
--------
*zplug(1)*, *zplug-status(1)*


Further Documentation
---------------------

See the references in https://github.com/zplug/zplug/wiki[official wiki page] to get started using zplug.
The wiki may perhaps be overwhelming for first-time users.


Authors
-------
zplug was originally written by Masaki Ishiyama (a.k.a @b4b4r07).
Many people have contributed to it.


Copying
-------
Copyright \(C) 2015-2016 Masaki Ishiyama

MIT License


Reporting Bugs
--------------
Report bugs to the https://github.com/zplug/zplug/issues[zplug issues]


// vim:ft=asciidoc