6 lines
62 B
Bash
Executable file
6 lines
62 B
Bash
Executable file
#!/bin/sh
|
|
set -ex
|
|
|
|
cd /data
|
|
cp -rf /mnt/* . || true
|
|
exec "$@"
|