From fc3e1ecc5c059669607507eebd4a5d32f9e9bcf7 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sat, 23 Jun 2018 12:07:17 +0100 Subject: [PATCH] cut: show syntax for n-to the end of a line (#2152) --- pages/common/cut.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/cut.md b/pages/common/cut.md index 377b8f80c..609142dba 100644 --- a/pages/common/cut.md +++ b/pages/common/cut.md @@ -22,6 +22,6 @@ `cut -d'{{;}}' -f{{2,10}}` -- Cut out the fields 3 through 7 of each line, using a space as a delimiter: +- Cut out the fields 3 through to the end of each line, using a space as a delimiter: -`cut -d'{{ }}' -f{{3-7}}` +`cut -d'{{ }}' -f{{3-}}`