Metadata-Version: 2.4
Name: slurm-util
Version: 0.2.1
Summary: Slurm utility functions
Author-email: Johan Edstedt <johan.edstedt@liu.se>
Requires-Python: >=3.8
Description-Content-Type: text/markdown

put this in your local config
```sh
Host *-node*-p*
	IdentityFile ~/.ssh/YOUR_IDENTITY_FILE
	ConnectTimeout 60
	ServerAliveInterval 30
	ServerAliveCountMax 10
	HostbasedAuthentication yes
	ProxyCommand sh -c 'h="$1"; cluster="${h%%%%-*}"; rest="${h#*-}"; node="${rest%%%%-p*}"; port="${h##*-p}"; exec ssh -W "${node}:${port}" "$cluster"' -- %n
```