From ab481fa4a558e8c0db509119d9fc4991108335e8 Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Wed, 30 May 2018 12:46:51 +0200 Subject: [PATCH] Reduce the number of leading spaces in nl and comment about it --- _gtfobins/nl.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_gtfobins/nl.md b/_gtfobins/nl.md index d2d0e5d..d886971 100644 --- a/_gtfobins/nl.md +++ b/_gtfobins/nl.md @@ -1,7 +1,8 @@ --- functions: file-read: - - code: | + - description: This prepends a leading space to each line. + code: | LFILE=file_to_read - nl -bn -w1 $LFILE + nl -bn -w1 -s '' $LFILE ---