Skip to content
Snippets Groups Projects
Commit 2e149303 authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

nix path-info: Add some more examples

parent 6656ef7b
No related branches found
No related tags found
No related merge requests found
...@@ -46,7 +46,15 @@ struct CmdPathInfo : StorePathsCommand ...@@ -46,7 +46,15 @@ struct CmdPathInfo : StorePathsCommand
}, },
Example{ Example{
"To print the 10 most recently added paths (using --json and the jq(1) command):", "To print the 10 most recently added paths (using --json and the jq(1) command):",
"nix path-info --all --json | jq -r 'sort_by(.registrationTime)[-11:-1][].path'" "nix path-info --json --all | jq -r 'sort_by(.registrationTime)[-11:-1][].path'"
},
Example{
"To show the size of the entire Nix store:",
"nix path-info --json --all | jq 'map(.narSize) | add'"
},
Example{
"To show every path whose closure is bigger than 1 GB, sorted by closure size:",
"nix path-info --json --all -S | jq 'map(select(.closureSize > 1e9)) | sort_by(.closureSize) | map([.path, .closureSize])'"
}, },
}; };
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment