mirror of
https://github.com/ceph/ceph
synced 2025-01-29 22:43:40 +00:00
10 lines
140 B
Bash
10 lines
140 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo 1 > file1
|
||
|
echo 2 > file2
|
||
|
echo 3 > file3
|
||
|
mkdir .snap/snap1
|
||
|
echo 4 > file4
|
||
|
if [ `ls` -eq `ls .snap/snap1` ]
|
||
|
return -1
|
||
|
fi
|