This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=afe338c70ca3e5d3c9cba4c3521418fe3db51955 commit afe338c70ca3e5d3c9cba4c3521418fe3db51955 Author: Guillem Jover <[email protected]> AuthorDate: Fri Feb 10 02:06:44 2023 +0100 man: Move shell redirection operator close to the redirected file This makes it more clear where we are redirecting to or from. --- man/dpkg.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/dpkg.pod b/man/dpkg.pod index b69ff3ec6..39f514b7a 100644 --- a/man/dpkg.pod +++ b/man/dpkg.pod @@ -1496,7 +1496,7 @@ To make a local copy of the package selection states: =over - dpkg --get-selections> myselections + dpkg --get-selections >myselections =back @@ -1516,7 +1516,7 @@ or with dpkg 1.17.6 and earlier: =over avail=$(mktemp) - apt-cache dumpavail> "$avail" + apt-cache dumpavail >"$avail" dpkg --merge-avail "$avail" rm "$avail" -- Dpkg.Org's dpkg

