Files
sunf/install.sh
Кодорвань d507541b25 Initial commit
2026-03-17 14:49:10 +05:00

18 lines
288 B
Bash

#!/bin/bash
if [ -d author/project ]; then
mv author/project author/sunf
fi
if [ -d author ]; then
mv author kodorvan
fi
for i in kodorvan/sunf/system/settings/*.sample; do
echo $i;
if [ ! -f "${i/.sample/}" ]; then
cp "$i" "${i/.sample/}";
echo ${i/.sample/};
fi
done