From 9e413ef31391ac1135fd8572944fa07cd84b7959 Mon Sep 17 00:00:00 2001 From: Simon Brandt <123938598+Simon-Brandt@users.noreply.github.com> Date: Tue, 11 Feb 2025 14:57:24 +0100 Subject: [PATCH] Fix plural form of verb --- SC2035.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2035.md b/SC2035.md index 47161fc..5390564 100644 --- a/SC2035.md +++ b/SC2035.md @@ -23,6 +23,6 @@ Similarly, `--` by convention indicates the end of options, and nothing after it Note that changing `*` to `./*` in GNU Tar parameters will add `./` prefix to path names in the created archive. This may cause subtle problems (eg. to search for a specific file in archive, the `./` prefix must be specified as well). So using `-- *` is a safer fix for GNU Tar commands. -`echo` and `printf` does not have issues unless the glob is the first word in the command. ShellCheck 0.7.2+ does not warn for these commands. +`echo` and `printf` do not have issues unless the glob is the first word in the command. ShellCheck 0.7.2+ does not warn for these commands. For more information, see "[Filenames and Pathnames in Shell: How to do it Correctly](https://dwheeler.com/essays/filenames-in-shell.html)".