mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 12:38:02 +00:00
f0ab6fc9b4
* Add TNG catalogue script * Add imoprt * Add TNG box * Add import * Fix little bug * Add TNG300-1 * Add shell scripts * Organize .gitignore * Add scatter to file name * Add argument scatter * Add threshold on mass * Update nb * Add scatter argument * Add scattering of radial positions * Update nb * Update script
20 lines
307 B
Bash
Executable file
20 lines
307 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "Usage: ./script.sh <path_to_file>"
|
|
exit 1
|
|
fi
|
|
|
|
env="/mnt/zfsusers/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
|
queue="berg"
|
|
nthreads=1
|
|
memory=7
|
|
|
|
file="$1"
|
|
|
|
cm="addqueue -q $queue -n $nthreads -m $memory $env $file"
|
|
|
|
echo "Submitting:"
|
|
echo $cm
|
|
echo
|
|
$cm
|