From 629501ccc7e6a508a18ef75668b0ad3c6e2e8e7d Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Sun, 17 Jan 2021 23:22:33 +0100 Subject: [PATCH] Improve bridge --- _gtfobins/bridge.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_gtfobins/bridge.md b/_gtfobins/bridge.md index f3ce889..db0bbe7 100644 --- a/_gtfobins/bridge.md +++ b/_gtfobins/bridge.md @@ -1,8 +1,8 @@ --- functions: file-read: - - description: Outputs the first line of the file, until the first whitespace, to stderr. + - description: Outputs the first line of the file (until the first whitespace) inside an error message to stdandard error. code: | LFILE=file_to_read - bridge -b "${LFILE}" + bridge -b "$LFILE" ---