From 95034685ff16a92c2c5cabd7c54750462ffad318 Mon Sep 17 00:00:00 2001 From: Wirawan Purwanto Date: Fri, 1 Jun 2018 12:50:56 -0400 Subject: [PATCH] * interact: Tool to allocate an interactive session on a regular compute node under SLURM. --- turing/slurm/interact | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 turing/slurm/interact diff --git a/turing/slurm/interact b/turing/slurm/interact new file mode 100755 index 0000000..50c83e9 --- /dev/null +++ b/turing/slurm/interact @@ -0,0 +1,6 @@ +#!/bin/bash +# +# Get a login shell on a compute node +# (SLURM partition) + +srun --pty --preserve-env -p main "$@" /bin/bash