diff options
author | Jim Meyering <meyering@redhat.com> | 2012-01-07 17:47:58 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-01-09 21:50:08 +0100 |
commit | dd0e4c5621ca2fa9255aef4eee0e7cf41cd335d2 (patch) | |
tree | 5194ff517669cfb08a3ba329658b45870ab063bd /tests/mv/vfat | |
parent | 50610144b02763f5dd5f6198ceceb88c27c393aa (diff) | |
download | coreutils-dd0e4c5621ca2fa9255aef4eee0e7cf41cd335d2.tar.xz |
tests: change `...' to '...' on lines not matching /[=\$]/
Exempt lines with '$' or '=', since those are prone to improper
conversion. Run this:
git grep -l "\`[^']*'" tests \
|xargs perl -pi -e '/[=\$]/ and next;s/\`([^'\''"]*?'\'')/'\''$1/g'
Diffstat (limited to 'tests/mv/vfat')
-rw-r--r-- | tests/mv/vfat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/mv/vfat b/tests/mv/vfat index 8ed334221..78b1ccc0a 100644 --- a/tests/mv/vfat +++ b/tests/mv/vfat @@ -24,7 +24,7 @@ cat <<\EOF Prior to 5.0.91, ... The problem: - On a VFAT file system with coreutils-5.0.90, `mv FOO foo' removes the + On a VFAT file system with coreutils-5.0.90, 'mv FOO foo' removes the sole copy of the file named by both the source and destination arguments. Demonstrate the problem, as root: @@ -45,9 +45,9 @@ And in case you actually do the above, you can do this to clean up: cd /tmp && umount /tmp/mnt && rm -r 1 mnt Hey! Can't create hard links on vfat. -The above `ln' evokes an `operation not permitted' failure. +The above 'ln' evokes an 'operation not permitted' failure. -This demonstrates the same thing with file system type `umsdos' +This demonstrates the same thing with file system type 'umsdos' No hard links: cd /tmp \ |