Note that there are some explanatory texts on larger screens.

plurals
  1. POImporting Projects and Building workspace from batch file
    primarykey
    data
    text
    <p>I have this batch file</p> <pre><code>@ECHO OFF ECHO Please Enter Path of the View, you want to update in double quotes. SET /P variable= SET ECLIPSE=C:\Users\gdeep\Desktop\TED-4.3.0.20110512190809.lnk SET WORKSPACE=C:\Users\gdeep\DevCodebase_2 :LOOP ECHO Press 'g' for Graphical Interface and 'c' for Command line. SET /P answer= IF /I "%answer%"=="g" GOTO GRAPHICAL IF /I "%answer%"=="c" GOTO COMMANDLINE ECHO Invalid Input. Please Try Again. GOTO LOOP :GRAPHICAL cleartool update -graphical %variable% GOTO CONTINUE :COMMANDLINE cleartool update %variable% GOTO CONTINUE :CONTINUE FOR /D %%i IN (%WORSPACE%) DO RD /S /Q "%%i" DEL /Q "%WORSPACE%\*.*" START %ECLIPSE% -data %WORSPACE% D: chdir "%variable%"\v4electronics ECHO Please Ensure that Server is killed. PAUSE mvn clean install -Dmaven.test.skip=true -Dresource.minify.skip=true </code></pre> <p>For deleting all the projects i used</p> <pre><code> FOR /D %%i IN (%WORSPACE%) DO RD /S /Q "%%i" DEL /Q "%WORSPACE%\*.*" </code></pre> <p>Can anyone explain this to me? I copied it from somewhere and don't want to use it without understanding. Problem with using above command is althout it seem to work, i see The system cannot find the file specified. The system cannot find the path specified. as the output. Also, the way i am deleting, will it be equivalent to if i delete them from the eclipse, by select all projects and deleting?</p> <p>Another problem here is that when i have .</p> <pre><code> mvn clean install -Dmaven.test.skip=true -Dresource.minify.skip=true </code></pre> <p>in the end it works fine, otherwise, if there is any other command after it, those commands doesn't run.</p> <p>After this, I then wanna import all maven projects from the Clearcase %Variable%. And i want to do that by command line only. Can you help me with that?</p> <p>Thanks for your help. Appreciate your time.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload