-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcopy2www.bat
36 lines (24 loc) · 977 Bytes
/
copy2www.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@echo off
SETLOCAL ENABLEDELAYEDEXPANSION
IF "%~1" == "" GOTO COPY_ALL
set fmd=%~1
set fhtml=!fmd:~0,-3!.html
@echo !fhtml!
cp -rfv @build\!fhtml! ../bitdust.www.english
GOTO END
:COPY_ALL
cp -rfv @build/*.html ../bitdust.www.english
REM cp -rfv @build/automats ../bitdust.www.english
cp -rfv @build/chat ../bitdust.www.english
cp -rfv @build/customer ../bitdust.www.english
cp -rfv @build/main ../bitdust.www.english
cp -rfv @build/p2p ../bitdust.www.english
cp -rfv @build/raid ../bitdust.www.english
cp -rfv @build/services ../bitdust.www.english
cp -rfv @build/storage ../bitdust.www.english
cp -rfv @build/stun ../bitdust.www.english
cp -rfv @build/supplier ../bitdust.www.english
cp -rfv @build/transport ../bitdust.www.english
cp -rfv @build/userid ../bitdust.www.english
:END
@echo [DONE!]