From ca75a21db8940222f495a803e727797e71fce969 Mon Sep 17 00:00:00 2001 From: Stavros Tsourlidakis Date: Tue, 29 Oct 2019 09:44:06 +0200 Subject: [PATCH] join: improve formatting --- pages/common/join.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/join.md b/pages/common/join.md index 9800ef9db1..91e964f4d7 100644 --- a/pages/common/join.md +++ b/pages/common/join.md @@ -8,12 +8,12 @@ - Join two files using a comma (instead of space) as a field separator: -`join -t ',' {{file1}} {{file2}}` +`join -t {{','}} {{file1}} {{file2}}` - Join field3 of file1 with field1 of file2: -`join -1 3 -2 1 {{file1}} {{file2}}` +`join -1 {{3}} -2 {{1}} {{file1}} {{file2}}` - Produce a line for each unpairable line for file1: -`join -a 1 {{file1}} {{file2}}` +`join -a {{1}} {{file1}} {{file2}}`