1 | @echo off
|
---|
2 | rem $Id: load.cmd 69498 2017-10-28 15:07:25Z vboxsync $
|
---|
3 | rem rem @file
|
---|
4 | rem Windows NT batch script for launching load.sh
|
---|
5 | rem
|
---|
6 |
|
---|
7 | rem
|
---|
8 | rem Copyright (C) 2009-2015 Oracle Corporation
|
---|
9 | rem
|
---|
10 | rem This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | rem available from http://www.virtualbox.org. This file is free software;
|
---|
12 | rem you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | rem General Public License (GPL) as published by the Free Software
|
---|
14 | rem Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | rem VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | rem hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | rem
|
---|
18 | rem The contents of this file may alternatively be used under the terms
|
---|
19 | rem of the Common Development and Distribution License Version 1.0
|
---|
20 | rem (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
21 | rem VirtualBox OSE distribution, in which case the provisions of the
|
---|
22 | rem CDDL are applicable instead of those of the GPL.
|
---|
23 | rem
|
---|
24 | rem You may elect to license modified versions of this file under the
|
---|
25 | rem terms and conditions of either the GPL or the CDDL or both.
|
---|
26 | rem
|
---|
27 |
|
---|
28 |
|
---|
29 | setlocal ENABLEEXTENSIONS
|
---|
30 | setlocal
|
---|
31 |
|
---|
32 | rem
|
---|
33 | rem loadall.sh should be in the same directory as this script.
|
---|
34 | rem
|
---|
35 | set MY_SCRIPT=%~dp0load.sh
|
---|
36 | if exist "%MY_SCRIPT%" goto found
|
---|
37 | echo load.cmd: failed to find load.sh in "%~dp0".
|
---|
38 | goto end
|
---|
39 |
|
---|
40 | rem
|
---|
41 | rem Found it, convert slashes and tell kmk_ash to interpret it.
|
---|
42 | rem
|
---|
43 | :found
|
---|
44 | set MY_SCRIPT=%MY_SCRIPT:\=/%
|
---|
45 | set MY_ARGS=%*
|
---|
46 | if ".%MY_ARGS%." NEQ ".." set MY_ARGS=%MY_ARGS:\=/%
|
---|
47 | kmk_ash %MY_SCRIPT% %MY_ARGS%
|
---|
48 |
|
---|
49 | :end
|
---|
50 | endlocal
|
---|
51 | endlocal
|
---|
52 |
|
---|