OSDN Git Service

d3afbe4ea549d61456bbf7302a179c10dfb7495b
[fast-forth/master.git] / config / SendSourceFileToTarget.bat
1 ::SendSourceFileToTarget.bat
2 ::used as link in any folder to drag and drop file.f or file.4th on it.
3
4 :: %1 is file.f to be send
5
6 ::@ECHO OFF
7
8 IF  /I "%~x1" == ".f" goto sendF
9
10 :send4th
11
12 start  %~dp1..\config\SendSource.bat %1  ECHO
13 ::PAUSE > NUL
14 exit
15
16
17 :sendF
18
19 call  %~dp1..\config\Select.bat SelectTemplate
20
21 start  %~dp1..\config\SendSource.bat %1 %~dp1..\inc\%template% ECHO
22
23 ::PAUSE > NUL
24 exit