Change: switching to bash instead of the deprecated C Shell

This commit is contained in:
Abdalaziz Rashid 2020-07-15 13:34:09 +03:00
parent 8d32be7acd
commit 95b8ccfad4
5 changed files with 72 additions and 73 deletions

26
Code/brute_force_oneFile_mdl_v2.scr Normal file → Executable file
View file

@ -1,18 +1,18 @@
#!/bin/csh
#!/bin/bash
# USAGE EXAMPLE: solve_mysteries.scr ops6.txt 2
# USAGE EXAMPLE: solve_mysteries.scr allops.txt 1800
set opsfile = $1
set maxtime = $2
set f = $3
set sigma = $4
set band = $5
opsfile=$1
maxtime=$2
f=$3
sigma=$4
band=$5
set outfile = brute_solutions.dat
set outfile2 = brute_constant.dat
set outfile3 = brute_formulas.dat
if -f $outfile /bin/rm $outfile
if -f $outfile2 /bin/rm $outfile2
if -f $outfile3 /bin/rm $outfile3
outfile=brute_solutions.dat
outfile2=brute_constant.dat
outfile3=brute_formulas.dat
if [ -f $outfile ]; then /bin/rm $outfile; fi
if [ -f $outfile2 ]; then /bin/rm $outfile2; fi
if [ -f $outfile3 ]; then /bin/rm $outfile3; fi
echo Trying to solve mysteries with brute force...
@ -20,4 +20,4 @@ echo Trying to solve $f...
echo /bin/cp -p $f mystery.dat
/bin/cp -p $f mystery.dat
echo $opsfile arity2templates.txt mystery.dat results.dat $sigma $band >args.dat
timeout {$maxtime}s ./symbolic_regress_mdl2.x
timeout $maxtime ./symbolic_regress_mdl2.x