timestamp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2015 Wind River Systems, Inc.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. exe_name=$(basename $0)
  8. # outputs the date and time in pre-set formats
  9. # default format is: 20150114-181112
  10. # usage: timestamp [-a] [-d] [-u] [-s] [-S]
  11. # where: -a changes default to: 2015-01-14-18-11-56
  12. # -d changes default to: 20150114
  13. # -u changes default to: 20150114_181201
  14. # -s changes default to: 20150114-1812.04
  15. # -S changes default to: 20150114-1812
  16. # Some switches can be mixed and matched, eg. -Sa gives 2015-01-14-18-13
  17. date_format="%Y%m%d"
  18. time_format="%H%M"
  19. seconds_format="%S"
  20. seconds_separator=""
  21. date_time_separator="-"
  22. function usage {
  23. printf "usage: %s [-a] [-d] [-u] [-s] [-S]\n" $exe_name >&2
  24. }
  25. function fail {
  26. usage
  27. exit -1
  28. }
  29. function get_opts {
  30. declare -r optstr="adusSh"
  31. while getopts ${optstr} opt; do
  32. case ${opt} in
  33. a) all_separated=1 ;;
  34. d) date_only=1 ;;
  35. u) date_time_separator="_" ;;
  36. s) seconds_separator="." ;;
  37. S) no_seconds=1 ;;
  38. h) usage; exit 0 ;;
  39. *) fail ;;
  40. esac
  41. done
  42. }
  43. get_opts $@
  44. if [ x${all_separated} == x1 ]; then
  45. date_format="%Y-%m-%d"
  46. time_format="%H-%M"
  47. seconds_separator="-"
  48. fi
  49. if [ x${date_only} == x1 ]; then
  50. date_time_separator=""
  51. time_format=""
  52. seconds_format=""
  53. seconds_separator=""
  54. fi
  55. if [ x${no_seconds} == x1 ]; then
  56. seconds_format=""
  57. seconds_separator=""
  58. fi
  59. output_date=${date_format}${date_time_separator}
  60. output_time=${time_format}${seconds_separator}${seconds_format}
  61. output=$(date +${output_date}${output_time})
  62. echo ${output}