From f864a44c095c9d750138c0f9eafe8ea30fe699c5 Mon Sep 17 00:00:00 2001 From: Silas Kraume Date: Fri, 8 Sep 2023 13:51:38 +0200 Subject: [PATCH] updated doc --- ARGUMENTS.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/ARGUMENTS.md b/ARGUMENTS.md index 3d09db75..481b40c7 100644 --- a/ARGUMENTS.md +++ b/ARGUMENTS.md @@ -259,6 +259,7 @@ Shows the Path to the File in each Line prefix. This can be useful when querying for Substrings or Patterns such that only a few Lines are being displayed. Using this Argument in uppercase (--FP, --FILEPREFIX) will result in the Path being shown as the url file Protocol. This can be useful in case the Terminal supports interacting with Links such that the File can be instantly opened. +Using the lowercase Argument in Combination with the -n, --number Parameter a GNU-style link format will be displayed. ```console > catw test.txt --fp @@ -266,9 +267,14 @@ This can be useful in case the Terminal supports interacting with Links such tha /test.txt line 2 ``` ```console -> catw test.txt --FP -file:////test.txt line 1 -file:////test.txt line 2 +> catw test.txt --FP -n +1) file:////test.txt line 1 +2) file:////test.txt line 2 +``` +```console +> catw test.txt --fp -n +/test.txt:1 line 1 +/test.txt:2 line 2 ```