mirror of
https://github.com/ceph/ceph
synced 2024-12-21 02:42:48 +00:00
12 lines
137 B
Bash
12 lines
137 B
Bash
|
#!/bin/sh -ex
|
||
|
|
||
|
touch mnt/a/file1
|
||
|
touch mnt/a/file2
|
||
|
|
||
|
# srcdn=destdn
|
||
|
mv mnt/a/file1 mnt/a/file1.renamed
|
||
|
|
||
|
# different
|
||
|
mv mnt/a/file2 mnt/b
|
||
|
|