Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

25
tldr/linux/qsub Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# qsub
> Submits a script to the queue management system TORQUE.
> More information: <https://manned.org/qsub.1>.
- Submit a script with default settings (depends on TORQUE settings):
`qsub {{script.sh}}`
- Submit a script with a specified wallclock runtime limit of 1 hour, 2 minutes and 3 seconds:
`qsub -l walltime={{1}}:{{2}}:{{3}} {{script.sh}}`
- Submit a script that is executed on 2 nodes using 4 cores per node:
`qsub -l nodes={{2}}:ppn={{4}} {{script.sh}}`
- Submit a script to a specific queue. Note that different queues can have different maximum and minimum runtime limits:
`qsub -q {{queue_name}} {{script.sh}}`