nqs2pbs.1B 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .\" Copyright (C) 1994-2018 Altair Engineering, Inc.
  2. .\" For more information, contact Altair at www.altair.com.
  3. .\"
  4. .\" This file is part of the PBS Professional ("PBS Pro") software.
  5. .\"
  6. .\" Open Source License Information:
  7. .\"
  8. .\" PBS Pro is free software. You can redistribute it and/or modify it under the
  9. .\" terms of the GNU Affero General Public License as published by the Free
  10. .\" Software Foundation, either version 3 of the License, or (at your option) any
  11. .\" later version.
  12. .\"
  13. .\" PBS Pro is distributed in the hope that it will be useful, but WITHOUT ANY
  14. .\" WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  15. .\" FOR A PARTICULAR PURPOSE.
  16. .\" See the GNU Affero General Public License for more details.
  17. .\"
  18. .\" You should have received a copy of the GNU Affero General Public License
  19. .\" along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. .\"
  21. .\" Commercial License Information:
  22. .\"
  23. .\" For a copy of the commercial license terms and conditions,
  24. .\" go to: (http://www.pbspro.com/UserArea/agreement.html)
  25. .\" or contact the Altair Legal Department.
  26. .\"
  27. .\" Altair’s dual-license business model allows companies, individuals, and
  28. .\" organizations to create proprietary derivative works of PBS Pro and
  29. .\" distribute them - whether embedded or bundled with other software -
  30. .\" under a commercial license agreement.
  31. .\"
  32. .\" Use of Altair’s trademarks, including but not limited to "PBS™",
  33. .\" "PBS Professional®", and "PBS Pro™" and Altair’s logos is subject to Altair's
  34. .\" trademark licensing policies.
  35. .\"
  36. .TH nqs2pbs 1B "1 Oct 2009" Local "PBS Professional"
  37. .SH NAME
  38. .B nqs2pbs
  39. - convert NQS job scripts to PBS format
  40. .SH SYNOPSIS
  41. .B nqs2pbs
  42. <NQS script> [<PBS script>]
  43. .br
  44. .B nqs2pbs
  45. --version
  46. .SH DESCRIPTION
  47. This utility converts an existing NQS job script to work with PBS and NQS.
  48. The existing script is copied and PBS directives, using
  49. .I #PBS,
  50. are inserted prior to each NQS directive (
  51. .I #QSUB
  52. or
  53. .I #@$
  54. ), in the original script.
  55. .LP
  56. Certain NQS date specifications and options are not supported by PBS.
  57. A warning message will be displayed indicating the problem and the line of
  58. the script on which it occurred.
  59. .LP
  60. If any unrecognizable NQS directives are encountered, an error message
  61. is displayed. The new PBS script will be deleted if any errors occur.
  62. .B Specifying Time or Date
  63. .br
  64. PBS will interpret a time specification without a date in the following way:
  65. .IP - 3
  66. If the time specified has not yet been reached, the job will become eligible
  67. to run at that time today.
  68. .IP -
  69. If the specified time has already passed when the job is submitted, the job
  70. will become eligible to run at that time tomorrow.
  71. .LP
  72. This command does not support time zone identifiers. All times are taken as local
  73. time.
  74. Converting NQS date specifications to the PBS form may result in a warning
  75. message and an incompletely converted date. PBS does not support date
  76. specifications of "today", "tomorrow", or the name of the days of the week
  77. such as "Monday". If any of these are encountered in a script, the PBS
  78. specification will contain only the time portion of the NQS specification,
  79. i.e. #PBS -a hhmm[.ss]. It is suggested that you specify the execution
  80. time on the qsub command line rather than in the script.
  81. .LP
  82. .SH OPTIONS
  83. .IP "--version" 10
  84. The
  85. .B nqs2pbs
  86. command returns its PBS version information and exits.
  87. This option must be used alone.
  88. .SH OPERANDS
  89. .IP "NQS script"
  90. Specifies the file name of the NQS script to convert. This file is not
  91. changed.
  92. .IP "PBS script"
  93. If specified, this is the name of the new PBS script. If not specified,
  94. the new file name is
  95. .I nqs_script.new .
  96. .LP
  97. .SH SEE ALSO
  98. qsub(1B)