The period here is part of the literal string in the example. Adding a
space caused the example to be quoted wrongly.
Details
Details
- Reviewers
gbe eugen_grosbein.net ziaee - Group Reviewers
manpages - Commits
- rG3581b6db62b1: find.1: fix rendering of find -s example
Before, and see https://man.freebsd.org/cgi/man.cgi?query=find&apropos=0&sektion=1&manpath=FreeBSD+15.1-RELEASE&format=html
For example, ‘find -s’ puts a directory ‘foo’ with all its contents before a directory ‘foo’. but ‘find | sort’ puts the directory name ‘foo’. before any string like ‘foo/bar’ because ‘.’ goes before ‘/’ in ASCII. In locales other than C results may vary more due to collation differences.
After
For example, ‘find -s’ puts a directory ‘foo’ with all its contents before a directory ‘foo.’ but ‘find | sort’ puts the directory name ‘foo.’ before any string like ‘foo/bar’ because ‘.’ goes before ‘/’ in ASCII. In locales other than C results may vary more due to collation differences.
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable