media2import.sh 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. #
  14. function ts() {
  15. return $(date)
  16. }
  17. # read flags
  18. usage () {
  19. echo "Usage: $0 -s - source, -d destination, -n note";
  20. exit 1;
  21. }
  22. while getopts s:d:n: flag
  23. do
  24. case "${flag}" in
  25. s) src=${OPTARG};;
  26. d) dst=${OPTARG};;
  27. n) note=${OPTARG};;
  28. ?) usage;;
  29. esac
  30. done
  31. # read source, by default current path (if not given)
  32. # assuming not recursive, only in-directory files will be imported
  33. if [ -z ${src} ]; then
  34. read -p "Source [$(pwd)]: " src
  35. if [ -z ${src} ]; then
  36. src="$(pwd)"
  37. fi
  38. fi
  39. # read destination, by default current path (if not given)
  40. if [ -z ${dst} ]; then
  41. read -p "Destination [$(pwd)]: " dst
  42. if [ -z ${dst} ]; then
  43. dst="$(pwd)"
  44. fi
  45. fi
  46. # read noteription, by default empty
  47. if [ -z ${note} ]; then
  48. read -p "Note of session/event: " note
  49. if [ -z ${note} ]; then
  50. note=""
  51. else
  52. # adding hyphen before noteription, if it is not empty
  53. note=" - ${note}"
  54. fi
  55. fi
  56. # source and destination can not be the same, exit
  57. if [ ${src} = ${dst} ]; then
  58. echo "Source and destination are the same, exiting..."
  59. exit 2
  60. fi
  61. # confirm
  62. echo "Source: [${src}]"
  63. echo "Destination: [${dst}]"
  64. echo "Note: [${note}]"
  65. read -p "Confirm (Y): " confirm
  66. if [ ${confirm} = "Y" ]; then
  67. echo "Reading source and beginning to move..."
  68. # check that source directory exists, otherwise - exit
  69. if ! [ -d ${src} ]; then
  70. echo "Source directory does not exist, exiting..."
  71. exit 2
  72. fi
  73. # check and create destination directory, if needed
  74. if [ -d ${dst} ]; then
  75. mkdir -p -m 700 ${dst}
  76. fi
  77. # -path ${dst} -exec cp {} ${dst}
  78. # -exec cp {} ${dst}/$(stat -f %Sm -t %Y-%m-%d)/ ';'
  79. find ${src} -type f -print -exec mkdir -p ${dst}/$( stat -f %Sm -t %Y-%m-%d {} ) ';'
  80. # TODO: output total amount of files and size
  81. # itirate files
  82. # read creation date of file
  83. #dst_subdir="${dst}/${file_creation_date}${note}"
  84. # read creation date and time of file
  85. #file_new_name="$(read creation date and time, format)-${file}"
  86. # output debug
  87. # echo "[ $(ts) ] src: [${src}/${file], dst: [${dst_subdir}/${file_new_name}]"
  88. # hash before move
  89. # TODO: perhaps, replace with rsync (if there will be any sense)
  90. # TODO: check if file exists
  91. # cp -v ${src}/${file} ${dst_subdir}/${file_new_name}
  92. # hash after
  93. # TODO: compare hashes, output result
  94. else
  95. # not confirmed
  96. echo "Operation is not confirmed."
  97. exit 1
  98. fi