From 7a17e41dcfad2a45d3acced2596f7359bbcd1075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sun, 5 Feb 2023 21:41:24 +0100 Subject: test: drop whitespace after shell redirection operators (The one case that is left unchanged is '< <(subcommand)'.) This way, the style with no gap was already dominant. This way, the reader immediately knows that ' < ' is a comparison operator and ' << ' is a shift. In a few cases, replace custom EOF replacement by just EOF. There is no point in using someting like "_EOL" unless "EOF" appears in the text. --- test/TEST-77-OPENFILE/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/TEST-77-OPENFILE') diff --git a/test/TEST-77-OPENFILE/test.sh b/test/TEST-77-OPENFILE/test.sh index e4349997a0..92afa4c716 100755 --- a/test/TEST-77-OPENFILE/test.sh +++ b/test/TEST-77-OPENFILE/test.sh @@ -9,8 +9,8 @@ TEST_DESCRIPTION="Openfile tests" test_append_files() { local workspace="${1:?}" - echo "Open" > "$workspace/test-77-open.dat" - echo "File" > "$workspace/test-77-file.dat" + echo "Open" >"$workspace/test-77-open.dat" + echo "File" >"$workspace/test-77-file.dat" } do_test "$@" -- cgit v1.2.1