mirror of
https://github.com/ceph/ceph
synced 2024-12-13 06:57:21 +00:00
15 lines
143 B
Bash
Executable File
15 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
basedir=`echo $0 | sed 's/[^/]*$//g'`.
|
|
. $basedir/common.sh
|
|
|
|
mount
|
|
enter_mydir
|
|
|
|
mkdir foo
|
|
echo foo > bar
|
|
sync
|
|
|
|
leave_mydir
|
|
umount
|