feat: add --get flag for headless cell value extraction#245
Open
cemheren wants to merge 42 commits into
Open
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Targets homelab audience with health-ext, tls, docker, ping extensions. Positioned as 'wallpaper dashboard' not a Homepage/Dashy replacement. Includes posting strategy, first comment, and timing notes.
Adds a new headless CLI flag that prints a single cell value by Excel-style reference (e.g. B3, AA10). Useful in shell scripts: balance=$(QuickSheet budget.csv --get C5) Supports all export-style error reporting (missing file, invalid ref, out-of-range). Exits with non-zero on error. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
--get <CellRef>for extracting a single cell value from CSV by Excel-style reference.Usage
Supports standard Excel-style refs (A1, B3, AA10, etc.). Reports clear errors for invalid refs and out-of-range cells.
Why
Makes QuickSheet useful as a composable CLI tool in shell scripts — extract specific values from CSV without awk/csvtool gymnastics. Pairs with existing
--export-md,--export-jsonfor a complete headless toolkit.