media2import.sh 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. #
  13. function ts() {
  14. return $(date)
  15. }
  16. # read arguments
  17. # src
  18. # dst
  19. #desc
  20. # read source, by default current path (if not given)
  21. # assuming not recursive, only in-directory files will be imported
  22. echo "Source [$(pwd)]:"
  23. read src
  24. if [ ${src} != "" ]l then
  25. src = "$(pwd)"
  26. fi
  27. # read destination, by default current path (if not given)
  28. echo "Destination [$(pwd)]:"
  29. read dst
  30. if [ ${dst} != "" ]l then
  31. dst = "$(pwd)"
  32. fi
  33. # source and destination can not be the same, exit
  34. if [ ${src} -eq ${dst} ]; then
  35. echo "[$ts] Source and destination are the same, exiting..."
  36. exit 2
  37. fi
  38. # read description, by default empty
  39. echo "Description of session/event:"
  40. read desc
  41. if [ ${desc} != "" ]l then
  42. # adding hyphen before description, if it is not empty
  43. desc = " - ${desc}"
  44. fi
  45. # create filelist from source
  46. # TODO: output total amount of files and size
  47. # itirate files
  48. # read creation date of file
  49. dst_subdir="${dst}/${file_creation_date}${desc}"
  50. # read creation date and time of file
  51. file_new_name="$(read creation date and time, format)-${file}"
  52. # output debug
  53. echo "[ $(ts()) ] src: [${src}/${file], dst: [${dst_subdir}/${file_new_name}]"
  54. # hash before move
  55. # TODO: perhaps, replace with rsync (if there will be any sense)
  56. # TODO: check if file exists
  57. mv -v ${src}/${file} ${dst_subdir}/${file_new_name}
  58. # hash after
  59. # TODO: compare hashes, output result