~ubuntu-branches/ubuntu/precise/slurm-llnl/precise

« back to all changes in this revision

Viewing changes to contribs/torque/qsub.pl

  • Committer: Bazaar Package Importer
  • Author(s): Gennaro Oliva
  • Date: 2011-04-08 11:21:17 UTC
  • mfrom: (3.3.16 sid)
  • Revision ID: james.westby@ubuntu.com-20110408112117-nfnyq9dtm55hqoaw
Tags: 2.2.4-1
* New upstream releases 
* Cleaning spare file and directories, not belonging to the sources
  generated by the building process and not removed by distclean.
  Added debian/clean with spare files and rm -rf inside debian/rules
  for directories.
* Added new packages libslurm-perl, libslurmdb-perl, slurm-llnl-torque
  (Closes: #575822) thanks to Julien Blache

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
           'e=s'      => \$err_path,
87
87
           'h'        => \$hold,
88
88
           'I'        => \$interactive,
89
 
#          'j:s'      => \$join,
 
89
           'j:s'      => sub { warn "option -j is the default, " .
 
90
                                    "stdout/stderr go into the same file\n" },
90
91
#          'k=s'      => \$keep,
91
92
           'l=s'      => \$resource_list,
92
93
           'm=s'      => \$mail_options,
98
99
#          'r=s'      => \$rerunable,
99
100
#          'S=s'      => \$script_path,
100
101
#          'u=s'      => \$running_user_list,
101
 
#          'v=s'      => \$variable_list,
102
 
#          'V'        => \$all_env,
 
102
           'v=s'      => sub { warn "option -v is not supported, " .
 
103
                                    "since the current environment " .
 
104
                                    "is exported by default\n" },
 
105
           'V'        => sub { warn "option -V is not necessary, " .
 
106
                                    "since the current environment " .
 
107
                                    "is exported by default\n" },
103
108
           'W'        => \$additional_attributes,
104
109
#          'z'        => \$no_std,
105
110
           'help|?'   => \$help,
349
354
 
350
355
=head1 SYNOPSIS
351
356
 
352
 
qsub  [-a date_time] [-A account_string] [-b secs] [-c interval]
353
 
      [-C directive_prefix] [-e path] [-h] [-I]
354
 
      [-j join] [-k keep] [-l resource_list] [-m mail_options]
355
 
      [-M  user_list] [-N name] [-o path] [-p priority] [-q destination]
356
 
      [-r c] [-S path_list] [-u user_list] [-v variable_list] [-V]
357
 
      [-W additional_attributes] [-z] [script]
 
357
qsub  [-a date_time]
 
358
      [-A account_string]
 
359
      [-b secs]
 
360
      [-C directive_prefix]
 
361
      [-e path]
 
362
      [-I]
 
363
      [-l resource_list]
 
364
      [-m mail_options] [-M  user_list]
 
365
      [-N name]
 
366
      [-o path]
 
367
      [-p priority]
 
368
      [-q destination]
 
369
      [-W additional_attributes]
 
370
      [-h]
 
371
      [script]
358
372
 
359
373
=head1 DESCRIPTION
360
374
 
361
 
The B<qsub> command displays information about nodes.
 
375
The B<qsub> command displays information about nodes. It is aimed to be feature-compatible with PBS' qsub.
362
376
 
363
377
=head1 OPTIONS
364
378
 
368
382
 
369
383
Display information for all nodes. This is the default if no node name is specified.
370
384
 
371
 
=item B<-? | --help>
 
385
=item B<-I>
 
386
 
 
387
Interactive execution.
 
388
 
 
389
=item B<-j> join
 
390
 
 
391
It is not necessary (currently also not possible) since stderr/stdout are always joined.
 
392
 
 
393
=item B<-v> [variable_list]
 
394
 
 
395
Exporting single variables via -v is not supported, since the entire login environment
 
396
is exported by the default.
 
397
 
 
398
=item B<-V>
 
399
 
 
400
The -V option to export the current environment is not required since it is done by default.
 
401
 
 
402
=item B<-?> | B<--help>
372
403
 
373
404
brief help message
374
405