mdate-sh
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:5k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # Get modification time of a file or directory and pretty-print it.
  3. scriptversion=2003-11-09.00
  4. # Copyright (C) 1995, 1996, 1997, 2003  Free Software Foundation, Inc.
  5. # written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, June 1995
  6. #
  7. # This program is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2, or (at your option)
  10. # any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software Foundation,
  19. # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  20. # As a special exception to the GNU General Public License, if you
  21. # distribute this file as part of a program that contains a
  22. # configuration script generated by Autoconf, you may include it under
  23. # the same distribution terms that you use for the rest of that program.
  24. # This file is maintained in Automake, please report
  25. # bugs to <bug-automake@gnu.org> or send patches to
  26. # <automake-patches@gnu.org>.
  27. case $1 in
  28.   '')
  29.      echo "$0: No file.  Try `$0 --help' for more information." 1>&2
  30.      exit 1;
  31.      ;;
  32.   -h | --h*)
  33.     cat <<EOF
  34. Usage: mdate-sh [--help] [--version] FILE
  35. Pretty-print the modification time of FILE.
  36. Report bugs to <bug-automake@gnu.org>.
  37. EOF
  38.     exit 0
  39.     ;;
  40.   -v | --v*)
  41.     echo "mdate-sh $scriptversion"
  42.     exit 0
  43.     ;;
  44. esac
  45. # Prevent date giving response in another language.
  46. LANG=C
  47. export LANG
  48. LC_ALL=C
  49. export LC_ALL
  50. LC_TIME=C
  51. export LC_TIME
  52. # GNU ls changes its time format in response to the TIME_STYLE variable, but
  53. # we cannot unset it since the V7 shell did not have an "unset" command.
  54. # The documentation says that the default is "posix-long-iso".
  55. #
  56. test "${TIME_STYLE+set}" = set && TIME_STYLE=posix-long-iso
  57. save_arg1="$1"
  58. # Find out how to get the extended ls output of a file or directory.
  59. if ls -L /dev/null 1>/dev/null 2>&1; then
  60.   ls_command='ls -L -l -d'
  61. else
  62.   ls_command='ls -l -d'
  63. fi
  64. # A `ls -l' line looks as follows on OS/2.
  65. #  drwxrwx---        0 Aug 11  2001 foo
  66. # This differs from Unix, which adds ownership information.
  67. #  drwxrwx---   2 root  root      4096 Aug 11  2001 foo
  68. #
  69. # To find the date, we split the line on spaces and iterate on words
  70. # until we find a month.  This cannot work with files whose owner is a
  71. # user named `Jan', or `Feb', etc.  However, it's unlikely that `/'
  72. # will be owned by a user whose name is a month.  So we first look at
  73. # the extended ls output of the root directory to decide how many
  74. # words should be skipped to get the date.
  75. # On HPUX /bin/sh, "set" interprets "-rw-r--r--" as options, so the "x" below.
  76. set - x`$ls_command /`
  77. # Find which argument is the month.
  78. month=
  79. command=
  80. until test $month
  81. do
  82.   shift
  83.   # Add another shift to the command.
  84.   command="$command shift;"
  85.   case $1 in
  86.     Jan) month=January; nummonth=1;;
  87.     Feb) month=February; nummonth=2;;
  88.     Mar) month=March; nummonth=3;;
  89.     Apr) month=April; nummonth=4;;
  90.     May) month=May; nummonth=5;;
  91.     Jun) month=June; nummonth=6;;
  92.     Jul) month=July; nummonth=7;;
  93.     Aug) month=August; nummonth=8;;
  94.     Sep) month=September; nummonth=9;;
  95.     Oct) month=October; nummonth=10;;
  96.     Nov) month=November; nummonth=11;;
  97.     Dec) month=December; nummonth=12;;
  98.   esac
  99. done
  100. # Get the extended ls output of the file or directory.
  101. set - x`eval "$ls_command "$save_arg1""`
  102. # Remove all preceding arguments
  103. eval $command
  104. # Get the month.  Next argument is day, followed by the year or time.
  105. case $1 in
  106.   Jan) month=January; nummonth=1;;
  107.   Feb) month=February; nummonth=2;;
  108.   Mar) month=March; nummonth=3;;
  109.   Apr) month=April; nummonth=4;;
  110.   May) month=May; nummonth=5;;
  111.   Jun) month=June; nummonth=6;;
  112.   Jul) month=July; nummonth=7;;
  113.   Aug) month=August; nummonth=8;;
  114.   Sep) month=September; nummonth=9;;
  115.   Oct) month=October; nummonth=10;;
  116.   Nov) month=November; nummonth=11;;
  117.   Dec) month=December; nummonth=12;;
  118. esac
  119. day=$2
  120. # Here we have to deal with the problem that the ls output gives either
  121. # the time of day or the year.
  122. case $3 in
  123.   *:*) set `date`; eval year=$$#
  124.        case $2 in
  125.  Jan) nummonthtod=1;;
  126.  Feb) nummonthtod=2;;
  127.  Mar) nummonthtod=3;;
  128.  Apr) nummonthtod=4;;
  129.  May) nummonthtod=5;;
  130.  Jun) nummonthtod=6;;
  131.  Jul) nummonthtod=7;;
  132.  Aug) nummonthtod=8;;
  133.  Sep) nummonthtod=9;;
  134.  Oct) nummonthtod=10;;
  135.  Nov) nummonthtod=11;;
  136.  Dec) nummonthtod=12;;
  137.        esac
  138.        # For the first six month of the year the time notation can also
  139.        # be used for files modified in the last year.
  140.        if (expr $nummonth > $nummonthtod) > /dev/null;
  141.        then
  142.  year=`expr $year - 1`
  143.        fi;;
  144.   *) year=$3;;
  145. esac
  146. # The result.
  147. echo $day $month $year
  148. # Local Variables:
  149. # mode: shell-script
  150. # sh-indentation: 2
  151. # eval: (add-hook 'write-file-hooks 'time-stamp)
  152. # time-stamp-start: "scriptversion="
  153. # time-stamp-format: "%:y-%02m-%02d.%02H"
  154. # time-stamp-end: "$"
  155. # End: