From 10f64a44eca83031f7c938fbdbc2b0ad59c8c6f5 Mon Sep 17 00:00:00 2001 From: Mark Oborne Date: Sun, 20 Jul 2025 17:31:22 +0900 Subject: [PATCH] chore: updated README.md Now reflects the new summary changes --- README.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bedd7a9..87102cc 100644 --- a/README.md +++ b/README.md @@ -43,20 +43,24 @@ ExecType PartialFill Or summarising a log file that includes FIX messages. ```bash # Pipe the file contents to prefix which then summarises the FIX messages by instrument -cat example.log | prefix --summary 55 --only-fix | sort | uniq --count +cat example.log | prefix --summary "35 for 55" | sort | uniq --count ``` outputs: ``` -4 NewOrderSingle EUR/USD -4 ExecutionReport EUR/USD -2 NewOrderSingle USD/KRW -2 ExecutionReport USD/KRW +4 NewOrderSingle for EUR/USD +4 ExecutionReport for EUR/USD +2 NewOrderSingle for USD/KRW +2 ExecutionReport for USD/KRW ``` ## Installation Can be installed using: -``` +```bash cargo install prefix ``` +Install manpage and completion using: +```bash +make install- # replace with the shell of your choice (fish/ zsh/ bash) +``` ## Issues Any bugs/ requests can be added to the [issues](https://github.com/Shivix/prefix/issues) page on the github repository.