123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- #
- # this is simple script for importing media files from source (such as memory cards)
- # to destination (such as local storage), creating date directories and renaming them by timestamp
- # of given file in desired format
- #
- #
- # Author: Anton TETERIN (https://og2k.com)
- # Source: https://github.com/InstallAndUse/Graphics
- #
- # History:
- # 2023-05-07 * init /A
- # 2023-05-08 + read flags from CLI /A
- # 2023-05-16 * moved from rsync to file 'for' itiration /A
- # 2023-06-27 * upgrading /A
- #
- function ts() {
- # change d
- ts=$(date)
- echo $(date )
- }
- # read flags
- usage () {
- echo "Usage: $0 -s - source, -d destination, -n note";
- exit 1;
- }
- while getopts s:d:n: flag
- do
- case "${flag}" in
- s) src=${OPTARG};;
- d) dst=${OPTARG};;
- n) note=${OPTARG};;
- ?) usage;;
- esac
- done
- # read source, by default current path (if not given)
- # assuming not recursive, only in-directory files will be imported
- if [ -z ${src} ]; then
- read -p "Source [$(pwd)]: " src
- if [ -z ${src} ]; then
- src="$(pwd)"
- fi
- fi
- # read destination, by default current path (if not given)
- if [ -z ${dst} ]; then
- read -p "Destination [$(pwd)]: " dst
- if [ -z ${dst} ]; then
- dst="$(pwd)"
- fi
- fi
- # read noteription, by default empty
- if [ -z ${note} ]; then
- read -p "Note of session/event: " note
- if [ -z ${note} ]; then
- note=""
- else
- # adding hyphen before noteription, if it is not empty
- note=" - ${note}"
- fi
- fi
- # source and destination can not be the same, exit
- if [ ${src} = ${dst} ]; then
- echo "Source and destination are the same, exiting..."
- exit 2
- fi
- # confirm
- echo "Source: [${src}]"
- echo "Destination: [${dst}]"
- echo "Note: [${note}]"
- read -p "Confirm (Y): " confirm
- if [ ${confirm} = "Y" ]; then
- echo "Reading source and beginning to move..."
- # check that source directory exists, otherwise - exit
- if ! [ -d ${src} ]; then
- echo "Source directory does not exist, exiting..."
- exit 2
- fi
- # check and create destination directory, if needed
- if [ -d ${dst} ]; then
- mkdir -p -m 700 ${dst}
- fi
- # # itirating files
- # for file in ${src}/*; do
- # # calculate total size for source files, as they will be copied (not recursive for directory)
- # done
- # echo "The size of all NN files is YY bytes (YY/1024 MB = YY/1024/104) GB."
- # src, dst total and free disk space before transfer
- # itirating files
- for file in ${src}/*; do
- filename="$(basename ${file})"
- # figure out when is the creation date
- file_mdate="$( stat -f %Sm -t %Y-%m-%d ${file} )"
- # create subdirectory for creation date
- mkdir -p ${dst}/${file_mdate}
- echo "[ $(ts) ]: src file : [${filename}], modification date is: ${file_mdate}, size: 11.5 MB"
- # linux/BSD check
- echo "sha256sum: [$( shasum -a 256 ${file} )]"
- echo "dst dir: [${dst}/${file_mdate}]"
- # main operation
- cp ${file} ${dst}/${file_mdate}
- echo "sha256sum: [$( shasum -a 256 ${dst}/${file_mdate}/${filename} )]"
- # if shasum is the same, remove file
- # add original file with fullpath to array:
- # files_src[]="${file}]"
- # add copied file with fullpath to array:
- # files_dst[]="${dst}/${file_mdate}/${filename}"
- done
- # src, dst total and free disk space before transfer
- # src, dst total and free disk space after copy
- # time taken to transfer
- # avarage transfer speed
- # unmount disk ?
- # diskutil unmount /Volumes/empty
- # open latest directory created?
- # TODO: output total amount of files and size
- # itirate files
- # read creation date of file
- #dst_subdir="${dst}/${file_creation_date}${note}"
- # read creation date and time of file
- #file_new_name="$(read creation date and time, format)-${file}"
- # output debug
- # hash before move
- # TODO: check if file exists
- # hash after
- # TODO: compare hashes, output result
- else
- # not confirmed
- echo "Operation is not confirmed."
- exit 1
- fi
|