version.pl
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:2k
源码类别:

CA认证

开发平台:

WINDOWS

  1. #!/usr/sbin/perl
  2. #
  3. # The contents of this file are subject to the Mozilla Public
  4. # License Version 1.1 (the "License"); you may not use this file
  5. # except in compliance with the License. You may obtain a copy of
  6. # the License at http://www.mozilla.org/MPL/
  7. # Software distributed under the License is distributed on an "AS
  8. # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9. # implied. See the License for the specific language governing
  10. # rights and limitations under the License.
  11. # The Original Code is the Netscape security libraries.
  12. # The Initial Developer of the Original Code is Netscape
  13. # Communications Corporation.  Portions created by Netscape are 
  14. # Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  15. # Rights Reserved.
  16. # Contributor(s):
  17. # Alternatively, the contents of this file may be used under the
  18. # terms of the GNU General Public License Version 2 or later (the
  19. # "GPL"), in which case the provisions of the GPL are applicable 
  20. # instead of those above.  If you wish to allow use of your 
  21. # version of this file only under the terms of the GPL and not to
  22. # allow others to use your version of this file under the MPL,
  23. # indicate your decision by deleting the provisions above and
  24. # replace them with the notice and other provisions required by
  25. # the GPL.  If you do not delete the provisions above, a recipient
  26. # may use your version of this file under either the MPL or the
  27. # GPL.
  28. #
  29. # Compose lowercase alphabet
  30. @alphabet = ( "a", "b", "c", "d", "e", "f", "g", "h",
  31.               "i", "j", "k", "l", "m", "n", "o", "p",
  32.               "q", "r", "s", "t", "u", "v", "w", "x",
  33.               "y", "z" );
  34. # Compute year
  35. $year = (localtime)[5] + 1900;
  36. # Compute month
  37. $month = (localtime)[4] + 1;
  38. # Compute day
  39. $day = (localtime)[3];
  40. # Compute base build number
  41. $version = sprintf( "%d%02d%02d", $year, $month, $day );
  42. $directory = sprintf( "%s/%s/%d%02d%02d", $ARGV[0], $ARGV[1], $year, $month, $day );
  43. # Print out the name of the first version directory which does not exist
  44. #if( ! -e  $directory )
  45. #{
  46.     print $version;
  47. #}
  48. #else
  49. #{
  50. #    # Loop through combinations
  51. #    foreach $ch1 (@alphabet)
  52. #    {
  53. # foreach $ch2 (@alphabet)
  54. # {
  55. #     $version = sprintf( "%d%02d%02d%s%s", $year, $month, $day, $ch1, $ch2 );
  56. #     $directory = sprintf( "%s/%s/%d%02d%02d%s%s", $ARGV[0], $ARGV[1], $year, $month, $day, $ch1, $ch2 );
  57. #     if( ! -e  $directory )
  58. #     {
  59. # print STDOUT $version;
  60. # exit;
  61. #     }
  62. # }
  63. #    }
  64. #}