1QSUB(1) User Contributed Perl Documentation QSUB(1)
2
3
4
6 qsub - submit a batch job in a familiar PBS format
7
9 qsub [-a start_time]
10 [-A account]
11 [-b y|n]
12 [-e err_path]
13 [-I]
14 [-l resource_list]
15 [-m mail_options] [-M user_list]
16 [-N job_name]
17 [-o out_path]
18 [-p priority]
19 [-pe shm task_cnt]
20 [-P wckey]
21 [-q destination]
22 [-r y|n]
23 [-v variable_list]
24 [-V]
25 [-wd workdir]
26 [-W additional_attributes]
27 [-h]
28 [script]
29
31 The qsub submits batch jobs. It is aimed to be feature-compatible with
32 PBS' qsub.
33
35 -a Earliest start time of job. Format: [HH:MM][MM/DD/YY]
36
37 -A account
38 Specify the account to which the job should be charged.
39
40 -b y|n
41 Whether to wrap the command line or not
42
43 -e err_path
44 Specify a new path to receive the standard error output for the
45 job.
46
47 -I Interactive execution.
48
49 -J job_array
50 Job array index values. The -J and -t options are equivalent.
51
52 -l resource_list
53 Specify an additional list of resources to request for the job.
54
55 -m mail_options
56 Specify a list of events on which email is to be generated.
57
58 -M user_list
59 Specify a list of email addresses to receive messages on specified
60 events.
61
62 -N job_name
63 Specify a name for the job.
64
65 -o out_path
66 Specify the path to a file to hold the standard output from the
67 job.
68
69 -p priority
70 Specify the priority under which the job should run.
71
72 -pe shm cpus-per-task
73 Specify the number of cpus per task.
74
75 -P wckey
76 Specify the wckey or project of a job.
77
78 -r y|n
79 Whether to allow the job to requeue or not.
80
81 -t job_array
82 Job array index values. The -J and -t options are equivalent.
83
84 -v [variable_list]
85 Export only the specified environment variables. This option can
86 also be used with the -V option to add newly defined environment
87 variables to the existing environment. The variable_list is a comma
88 delimited list of existing environment variable names and/or newly
89 defined environment variables using a name=value format.
90
91 -V The -V option to exports the current environment, which is the
92 default mode of options unless the -v option is used.
93
94 -wd workdir
95 Specify the workdir of a job. The default is the current work dir.
96
97 -? | --help
98 brief help message
99
100 --man
101 full documentation
102
103
104
105perl v5.28.1 2019-04-12 QSUB(1)