16 lines
232 B
Bash
16 lines
232 B
Bash
|
#!/bin/bash
|
||
|
ulimit -s 8192
|
||
|
|
||
|
#$ -l low
|
||
|
#$ -l os=*stretch
|
||
|
#$ -cwd
|
||
|
#$ -pe smp 1
|
||
|
##$ -q "*@minos15"
|
||
|
|
||
|
export PYTHONPATH="$PYTHONPATH:/home/marcel/git/"
|
||
|
|
||
|
source /opt/anaconda3/etc/profile.d/conda.sh
|
||
|
conda activate py37
|
||
|
|
||
|
python survBot.py
|