mirror of
https://github.com/ceph/ceph
synced 2025-01-15 15:32:45 +00:00
11 lines
189 B
Bash
Executable File
11 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo 1 > file1
|
|
echo 2 > file2
|
|
echo 3 > file3
|
|
mkdir .snap/snap1
|
|
echo 4 > file4
|
|
if [ `ls` -eq `ls .snap/snap1` ]; then
|
|
echo live and snap contents are identical?
|
|
false
|
|
fi |