mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
6386c55cee
BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
16 lines
111 B
Bash
Executable file
16 lines
111 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
mkdir -p result
|
|
cd result
|
|
rm -rf *
|
|
|
|
while [ $# -gt 0 ]
|
|
do
|
|
rsync -a "$1" .
|
|
shift
|
|
done
|
|
|
|
|
|
|