Correct shell scripts not running properly

This commit is contained in:
2019-08-26 22:24:16 +02:00
parent 626e0906a4
commit c225aecefa
4 changed files with 6 additions and 6 deletions
Regular → Executable
+2 -2
View File
@@ -1,3 +1,3 @@
#!/bin/bash source /home/djib/.basheditor/remote-debugging-v1.sh localhost 33333 #BASHEDITOR-TMP-REMOTE-DEBUGGING-END|Origin line:#!/bin/bash
# Shell script to make sjeng play against Sushi # Shell script to make sjeng play against Sushi
xboard -tc 0:10 -thinking -debug -firstChessProgram suicideChess -secondChessProgram sjeng -variant suicide xboard -mode twomachines -tc 0:10 -thinking -debug -firstChessProgram "java suicideChess/SuicideChess" -secondChessProgram sjeng -variant suicide
+3
View File
@@ -0,0 +1,3 @@
#!/bin/sh
# Shell script to have Sushi play against itself
xboard -mode twomachines -thinking -firstChessProgram "java suicideChess/SuicideChess" -secondChessProgram "java suicideChess/SuicideChess" -variant suicide -debug
-3
View File
@@ -1,3 +0,0 @@
#!/bin/sh
# Start XBoard to play against Sushi
xboard -thinking -firstChessProgram suicideChess -secondChessProgram suicideChess -variant suicide -debug
+1 -1
View File
@@ -99,7 +99,7 @@ public class SuicideChess {
/** /**
* The name to be displayed * The name to be displayed
*/ */
public static final String NAME = "djib's SuShi v1.0.5"; public static final String NAME = "djib's SuShi v1.0.6";
/** /**
* Displays informations in the console. * Displays informations in the console.