diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-11-17T12·40+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-11-17T12·40+0000 |
commit | e60c962fb8dd3d8be37c1f4ae08d5247901fa129 (patch) | |
tree | c8ac16743478164312460f897901d1731930dbd1 /doc | |
parent | 1db6259076b1b8f667451da8d2e44a55ece19056 (diff) |
* Add an operation `nix-store -q --size'.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/nix-store.xml | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/doc/manual/nix-store.xml b/doc/manual/nix-store.xml index 10bb3eda5774..a32559c033f4 100644 --- a/doc/manual/nix-store.xml +++ b/doc/manual/nix-store.xml @@ -404,6 +404,7 @@ error: cannot delete path `/nix/store/zq0h41l75vlb4z45kzgjjmsjxvcv1qk7-mesa-6.4' <arg choice='plain'><option>--tree</option></arg> <arg choice='plain'><option>--binding</option> <replaceable>name</replaceable></arg> <arg choice='plain'><option>--hash</option></arg> + <arg choice='plain'><option>--size</option></arg> <arg choice='plain'><option>--roots</option></arg> </group> <arg><option>--use-output</option></arg> @@ -587,9 +588,21 @@ query is applied to the target of the symlink.</para> <varlistentry><term><option>--hash</option></term> <listitem><para>Prints the SHA-256 hash of the contents of the - store paths <replaceable>paths</replaceable>. Since the hash is - stored in the Nix database, this is a fast - operation.</para></listitem> + store paths <replaceable>paths</replaceable> (that is, the hash of + the output of <command>nix-store --dump</command> on the given + paths). Since the hash is stored in the Nix database, this is a + fast operation.</para></listitem> + + </varlistentry> + + <varlistentry><term><option>--size</option></term> + + <listitem><para>Prints the size in bytes of the contents of the + store paths <replaceable>paths</replaceable> — to be precise, the + size of the output of <command>nix-store --dump</command> on the + given paths. Note that the actual disk space required by the + store paths may be higher, especially on filesystems with large + cluster sizes.</para></listitem> </varlistentry> |