mirror of
https://github.com/ceph/ceph
synced 2024-12-12 22:46:21 +00:00
11 lines
120 B
Bash
11 lines
120 B
Bash
|
#!/bin/sh -x
|
||
|
|
||
|
set -e
|
||
|
|
||
|
touch foo
|
||
|
chmod +x foo
|
||
|
mkdir .snap/s
|
||
|
find .snap/s/foo -executable | grep foo
|
||
|
rmdir .snap/s
|
||
|
rm foo
|