*** empty log message ***

This commit is contained in:
Jim Meyering
1999-10-16 13:13:39 +00:00
parent 449c9c39cc
commit 0470b5dce9
+19
View File
@@ -0,0 +1,19 @@
#!/bin/sh
umask 022
rm -f out
fail=0
for initial_files in 'a' 'a b' 'a b b~' 'a b b.~1~' 'a b b~ b.~1~'; do
for opt in existing never nil none numbered off simple t; do
touch $initial_files
env -i -- cp --backup=$opt a b || fail=1
echo $initial_files $opt: `ls a b*` >> out
rm -f a b*
done
done
# rm -f out
exit $fail