123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- #
- # 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
- #
- function ts() {
- return $(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
- find ${dst} -
- # 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
- # echo "[ $(ts) ] src: [${src}/${file], dst: [${dst_subdir}/${file_new_name}]"
- # hash before move
- # TODO: perhaps, replace with rsync (if there will be any sense)
- # TODO: check if file exists
- # cp -v ${src}/${file} ${dst_subdir}/${file_new_name}
- # hash after
- # TODO: compare hashes, output result
- else
- # not confirmed
- echo "Operation is not confirmed."
- exit 1
- fi
|