media2import.sh 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. #
  2. # this is simple script for importing media files from source (such as memory cards)
  3. # to destination (such as local storage), creating date directories and renaming them by timestamp
  4. # of given file in desired format
  5. #
  6. #
  7. # Author: Anton TETERIN (https://og2k.com)
  8. # Source: https://github.com/InstallAndUse/Graphics
  9. #
  10. # History:
  11. # 2023-05-07 * init /A
  12. # 2023-05-08 + read flags from CLI /A
  13. # 2023-05-16 * moved from rsync to file 'for' itiration /A
  14. #
  15. function ts() {
  16. return $(date)
  17. }
  18. # read flags
  19. usage () {
  20. echo "Usage: $0 -s - source, -d destination, -n note";
  21. exit 1;
  22. }
  23. while getopts s:d:n: flag
  24. do
  25. case "${flag}" in
  26. s) src=${OPTARG};;
  27. d) dst=${OPTARG};;
  28. n) note=${OPTARG};;
  29. ?) usage;;
  30. esac
  31. done
  32. # read source, by default current path (if not given)
  33. # assuming not recursive, only in-directory files will be imported
  34. if [ -z ${src} ]; then
  35. read -p "Source [$(pwd)]: " src
  36. if [ -z ${src} ]; then
  37. src="$(pwd)"
  38. fi
  39. fi
  40. # read destination, by default current path (if not given)
  41. if [ -z ${dst} ]; then
  42. read -p "Destination [$(pwd)]: " dst
  43. if [ -z ${dst} ]; then
  44. dst="$(pwd)"
  45. fi
  46. fi
  47. # read noteription, by default empty
  48. if [ -z ${note} ]; then
  49. read -p "Note of session/event: " note
  50. if [ -z ${note} ]; then
  51. note=""
  52. else
  53. # adding hyphen before noteription, if it is not empty
  54. note=" - ${note}"
  55. fi
  56. fi
  57. # source and destination can not be the same, exit
  58. if [ ${src} = ${dst} ]; then
  59. echo "Source and destination are the same, exiting..."
  60. exit 2
  61. fi
  62. # confirm
  63. echo "Source: [${src}]"
  64. echo "Destination: [${dst}]"
  65. echo "Note: [${note}]"
  66. read -p "Confirm (Y): " confirm
  67. if [ ${confirm} = "Y" ]; then
  68. echo "Reading source and beginning to move..."
  69. # check that source directory exists, otherwise - exit
  70. if ! [ -d ${src} ]; then
  71. echo "Source directory does not exist, exiting..."
  72. exit 2
  73. fi
  74. # check and create destination directory, if needed
  75. if [ -d ${dst} ]; then
  76. mkdir -p -m 700 ${dst}
  77. fi
  78. # itirating files
  79. for file in ${src}/*; do
  80. file_mdate="$( stat -f %Sm -t %Y-%m-%d ${file} )"
  81. echo "Filename: ${file}, it's modification date is: ${file_mdate}"
  82. mkdir -p ${dst}/${file_mdate}
  83. echo "[ $(ts) ] src: [${file}] dst: [${dst}/${file_mdate}]"
  84. cp -v ${file} ${dst}/${file_mdate}
  85. done
  86. # TODO: output total amount of files and size
  87. # itirate files
  88. # read creation date of file
  89. #dst_subdir="${dst}/${file_creation_date}${note}"
  90. # read creation date and time of file
  91. #file_new_name="$(read creation date and time, format)-${file}"
  92. # output debug
  93. # hash before move
  94. # TODO: check if file exists
  95. # hash after
  96. # TODO: compare hashes, output result
  97. else
  98. # not confirmed
  99. echo "Operation is not confirmed."
  100. exit 1
  101. fi