mirror of
https://github.com/ceph/ceph
synced 2025-02-07 10:53:30 +00:00
12 lines
125 B
Bash
Executable File
12 lines
125 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
# srcdn=destdn
|
|
touch ./a/file1
|
|
mv ./a/file1 ./a/file1.renamed
|
|
|
|
# different
|
|
touch ./a/file2
|
|
mv ./a/file2 ./b
|
|
|
|
|