Files
pay/android/docker/scripts/copyBack.sh
2022-09-26 16:22:27 +02:00

12 lines
159 B
Bash
Executable File

#!/bin/bash
# this runs as a normal user.
cd /usr/local/cache
for i in *
do
if ! test -a /mnt/cache/$i; then
cp -ar "$i" /mnt/cache/
fi
done