# sig [![ci](https://github.com/ynqa/sig/actions/workflows/ci.yml/badge.svg)](https://github.com/ynqa/sig/actions/workflows/ci.yml) Interactive grep |![sig.gif](https://github.com/ynqa/ynqa/blob/master/demo/sig.gif)|![sig_archived.gif](https://github.com/ynqa/ynqa/blob/master/demo/sig_archived.gif)| |---|---| ## Features - Interactive grep (for streaming) - *sig* allows users to interactively search through (streaming) data, updating results in real-time. - Re-execute command - If `--cmd` is specified instread of piping data to *sig*, the command will be executed on initial and retries. - This feature is designed to address the issue where data streams past while the user is fine-tuning the search criteria. In other words, even if the data has already passed, executing the command again allows the retrieval of the data for re-evaluation. - Archived mode - In archived mode, since there is no seeking capability for streaming data received through a pipe, it is not possible to search backwards without exiting the process. Therefore, in *sig*, the latest N entries of streaming data are saved, and it is possible to switch to a mode where you can grep through these N entries based on key inputs at any given moment. - Additionally, by starting in this mode, it is also possible to grep through static data such as files. - like [ugrep](https://github.com/Genivia/ugrep) with `-Q` option. ## Installation ### Homebrew ```bash brew install ynqa/tap/sigrs ``` ### Cargo ```bash cargo install sigrs ``` ### Nix (flakes) Add it as an input to your flake: ```nix inputs = { sig.url = 'github:ynqa/sig/' } ``` Create a shell with it: ```nix nix shell github:ynqa/sig ``` Or run it directly: ```nix cat README.md | nix run github:ynqa/sig -- --archived ``` ### Nix (classic) Fetch the source and use it, e.g. in your shell: ```nix let # At the time of writing this, pkgs need to be unstable for the package to build properly # (requires Rust 1.74, stable has 1.73) pkgs = import {}; sig = pkgs.callPackage (pkgs.fetchFromGitHub { owner = "ynqa"; repo = "sig"; rev = ""; hash = ""; # Build first, put proper hash in place }) {}; in pkgs.mkShell { packages = [sig]; } ``` ## Examples ```bash stern --context kind-kind etcd |& sig # or sig --cmd "stern --context kind-kind etcd" # this is able to retry command by ctrl+r. ``` ### Archived mode ```bash cat README.md |& sig -a # or sig -a --cmd "cat README.md" ``` ## Keymap | Key | Action | :- | :- | Ctrl + C | Exit `sig` | Ctrl + R | Retry command if `--cmd` is specified | Ctrl + F | Enter Archived mode | | Move the cursor one character to the left | | Move the cursor one character to the right | Ctrl + A | Move the cursor to the start of the filter | Ctrl + E | Move the cursor to the end of the filter | Backspace | Delete a character of filter at the cursor position | Ctrl + U | Delete all characters of filter (Archived mode) | Key | Action | :- | :- | Ctrl + C | Exit Archived mode | | Move the cursor one character to the left | | Move the cursor one character to the right | Ctrl + A | Move the cursor to the start of the filter | Ctrl + E | Move the cursor to the end of the filter | Backspace | Delete a character of filter at the cursor position | Ctrl + U | Delete all characters of filter ## Usage ```bash Interactive grep (for streaming) Usage: sig [OPTIONS] Examples: $ stern --context kind-kind etcd |& sig Or the method to retry command by pressing ctrl+r: $ sig --cmd "stern --context kind-kind etcd" Archived mode: $ cat README.md |& sig -a Or $ sig -a --cmd "cat README.md" Options: --retrieval-timeout Timeout to read a next line from the stream in milliseconds. [default: 10] --render-interval Interval to render a line in milliseconds. [default: 10] -q, --queue-capacity Queue capacity to store lines. [default: 1000] -a, --archived Archived mode to grep through static data. -i, --ignore-case Case insensitive search. --cmd Command to execute on initial and retries. -h, --help Print help (see more with '--help') -V, --version Print version ```