mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7617ec176d
blame tibor this one ;-) ``` find . -type f -not -name '*.png' -not -name '*.go' -not -name '*.md' -not -name '*.tar' -not -name '*.pem' -not -path './vendor/*' -not -path './.git/*' -not -path '*/testdata/*' -not -path './docs/*images*' -not -path '*/testfiles/*' -not -path './bundles/*' -not -path './docs/*static*/*' -not -path './docs/*article-img/*' -exec grep -HnEl '[[:space:]]$' {} \; | xargs sed -iE 's/[[:space:]]*$//' ``` Signed-off-by: Vincent Batts <vbatts@redhat.com>
43 lines
1.6 KiB
Text
43 lines
1.6 KiB
Text
hello | hello
|
|
he'll'o | hello
|
|
he'llo | hello
|
|
he\'llo | he'llo
|
|
he\\'llo | he\llo
|
|
abc\tdef | abctdef
|
|
"abc\tdef" | abc\tdef
|
|
'abc\tdef' | abc\tdef
|
|
hello\ | hello
|
|
hello\\ | hello\
|
|
"hello | hello
|
|
"hello\" | hello"
|
|
"hel'lo" | hel'lo
|
|
'hello | hello
|
|
'hello\' | hello\
|
|
"''" | ''
|
|
$. | $.
|
|
$1 |
|
|
he$1x | hex
|
|
he$.x | he$.x
|
|
he$pwd. | he.
|
|
he$PWD | he/home
|
|
he\$PWD | he$PWD
|
|
he\\$PWD | he\/home
|
|
he\${} | he${}
|
|
he\${}xx | he${}xx
|
|
he${} | he
|
|
he${}xx | hexx
|
|
he${hi} | he
|
|
he${hi}xx | hexx
|
|
he${PWD} | he/home
|
|
he${.} | error
|
|
'he${XX}' | he${XX}
|
|
"he${PWD}" | he/home
|
|
"he'$PWD'" | he'/home'
|
|
"$PWD" | /home
|
|
'$PWD' | $PWD
|
|
'\$PWD' | \$PWD
|
|
'"hello"' | "hello"
|
|
he\$PWD | he$PWD
|
|
"he\$PWD" | he$PWD
|
|
'he\$PWD' | he\$PWD
|
|
he${PWD | error
|