mirror of
https://github.com/ceph/ceph
synced 2024-12-14 07:25:50 +00:00
b5e4a31930
Signed-off-by: Greg Farnum <gregory.farnum@dreamhost.com>
13 lines
172 B
Bash
Executable File
13 lines
172 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
# srcdn=destdn
|
|
touch ./a/file1
|
|
touch ./a/file2
|
|
mv ./a/file1 ./a/file2
|
|
|
|
# different (srcdn != destdn)
|
|
touch ./a/file3
|
|
touch ./b/file4
|
|
mv ./a/file3 ./b/file4
|
|
|