10 lines
324 B
Batchfile
10 lines
324 B
Batchfile
@echo off
|
|
REM 设置脚本文件权限 (Windows环境)
|
|
REM 在Linux/Unix环境中运行: chmod +x *.sh
|
|
|
|
echo Setting executable permissions for backup scripts...
|
|
echo Note: On Windows, this is for documentation only.
|
|
echo On Linux/Unix systems, run: chmod +x docker/scripts/*.sh
|
|
|
|
echo Backup scripts are ready for use.
|
|
pause |