diff options
author | Jim Meyering <meyering@redhat.com> | 2012-01-07 17:18:14 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-01-07 17:18:14 +0100 |
commit | 8ac05f82a263364310dc9d8bfd734c478c03fbdd (patch) | |
tree | a9254f40733a0b932f52d463cfd49c8a43946e19 /tests/mv | |
parent | 101d1203c667ec3ab54a026dde43117563d4e944 (diff) | |
download | coreutils-8ac05f82a263364310dc9d8bfd734c478c03fbdd.tar.xz |
maint: update quoting of "Try `prog --help'" to "Try 'prog --help'"
Automatically adjust both the source (now in only one place)
and all tests that expect the resulting output via this:
git grep -l 'Try.*--help' src/system.h tests \
| xargs perl -pi -e 's/Try \\?`(\S+ --help)/Try '\''$1/'
Diffstat (limited to 'tests/mv')
-rwxr-xr-x | tests/mv/diag | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mv/diag b/tests/mv/diag index f30ba92ad..c8ba7f3e7 100755 --- a/tests/mv/diag +++ b/tests/mv/diag @@ -36,9 +36,9 @@ mv --target=f2 f1 >> out 2>&1 && fail=1 cat > exp <<\EOF mv: missing file operand -Try `mv --help' for more information. +Try 'mv --help' for more information. mv: missing destination file operand after `no-file' -Try `mv --help' for more information. +Try 'mv --help' for more information. mv: target `f1' is not a directory mv: target `f2' is not a directory EOF |