Crates.io | sigrs |
lib.rs | sigrs |
version | 0.1.4 |
source | src |
created_at | 2024-05-25 06:07:14.650366 |
updated_at | 2024-11-30 16:16:51.79114 |
description | Interactive grep (for streaming) |
homepage | |
repository | https://github.com/ynqa/sig |
max_upload_size | |
id | 1251755 |
size | 93,076 |
Interactive grep
--cmd
is specified instread of piping data to sig,
the command will be executed on initial and retries.-Q
option.brew install ynqa/tap/sigrs
cargo install sigrs
pacman -S sig
Add it as an input to your flake:
inputs = {
sig.url = 'github:ynqa/sig/<optional-ref>'
}
Create a shell with it:
nix shell github:ynqa/sig
Or run it directly:
cat README.md | nix run github:ynqa/sig -- --archived
Fetch the source and use it, e.g. in your shell:
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 <nixpkgs-unstable> {};
sig = pkgs.callPackage (pkgs.fetchFromGitHub {
owner = "ynqa";
repo = "sig";
rev = "<revision, e.g. master/v0.1.0/etc.>";
hash = ""; # Build first, put proper hash in place
}) {};
in
pkgs.mkShell {
packages = [sig];
}
stern --context kind-kind etcd |& sig
# or
sig --cmd "stern --context kind-kind etcd" # this is able to retry command by ctrl+r.
cat README.md |& sig -a
# or
sig -a --cmd "cat README.md"
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 |
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 <RETRIEVAL_TIMEOUT_MILLIS>
Timeout to read a next line from the stream in milliseconds. [default: 10]
--render-interval <RENDER_INTERVAL_MILLIS>
Interval to render a line in milliseconds. [default: 10]
-q, --queue-capacity <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 <CMD>
Command to execute on initial and retries.
-h, --help
Print help (see more with '--help')
-V, --version
Print version