mirror of
https://github.com/ceph/ceph
synced 2025-01-28 14:03:21 +00:00
10 lines
140 B
Bash
Executable File
10 lines
140 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` ]
|
|
return -1
|
|
fi |