在 HPC 集群上的 bash 脚本中加载模块
qsub我在标准大学集群上提交了以下 bash 脚本, #!/bin/bash #$ -cwd # Set the working directory for the job to the current directory #$ -pe smp 1 # Request 1 core #$ -l h_rt=1:0:0 # Request 1 hour runtime #$ -l h_vmem=100M # Request 1GB RAM module load xorg-utils/X11R7.7 module load ...