From 14b2bb279847b78ee92d357ce2c0bf3222cf09d2 Mon Sep 17 00:00:00 2001 From: despiegk Date: Wed, 9 Apr 2025 08:43:10 +0200 Subject: [PATCH] ... --- runexample.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/runexample.sh b/runexample.sh index 93e5bd3..cd7981a 100755 --- a/runexample.sh +++ b/runexample.sh @@ -8,32 +8,32 @@ cd doctreecmd # First, scan the collections echo "=== Scanning Collections ===" -cargo run -- scan-and-info ../examples supercollection +cargo run -- scan ../examples --doctree supercollection # Get a document in markdown format echo -e "\n=== Getting Document (Markdown) ===" -cargo run -- get -c supercollection -p 01_features.md +cargo run -- get -c supercollection -p 01_features.md --doctree supercollection # Get a document in HTML format echo -e "\n=== Getting Document (HTML) ===" -cargo run -- get -c supercollection -p 01_features.md -f html +cargo run -- get -c supercollection -p 01_features.md -f html --doctree supercollection # Get a document without specifying collection echo -e "\n=== Getting Document (Default Collection) ===" -cargo run -- get -p 01_features.md +cargo run -- get -p 01_features.md --doctree supercollection # Delete a specific collection echo -e "\n=== Deleting Collection ===" -cargo run -- delete-collection grid_documentation +cargo run -- delete-collection grid_documentation --doctree supercollection # List remaining collections echo -e "\n=== Listing Remaining Collections ===" -cargo run -- list +cargo run -- list --doctree supercollection # Reset all collections echo -e "\n=== Resetting All Collections ===" -cargo run -- reset +cargo run -- reset --doctree supercollection # Verify all collections are gone echo -e "\n=== Verifying Reset ===" -cargo run -- list \ No newline at end of file +cargo run -- list --doctree supercollection \ No newline at end of file