This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.config/bash/module/Group.sh

62 lines
1.2 KiB
Bash
Raw Normal View History

2023-12-17 21:15:50 +03:00
# Group files by extension.
# Usage: group_ext [FILES]
function group_ext() {
local IFS=$'\n'
local targets=(${@})
[[ "${targets}" = "" ]] && targets=($(_ls_file))
process() {
local ext=${target##*.}
2024-01-03 18:50:59 +03:00
[[ -d "${target}" ]] && { _iterate_skip "Is a directory."; return 0; }
[[ "${ext}" = "${target}" ]] && { _iterate_skip "No extension."; return 0; }
2023-12-17 21:15:50 +03:00
mkdir ${ext} 2> /dev/null
mv -- ${target} ./${ext}/${target}
}
_iterate_targets process ${targets[@]}
}
# Group files and dirs by year.
# Usage: group_year [FILES]
function group_year() {
local IFS=$'\n'
local targets=(${@})
[[ "${targets}" = "" ]] && targets=($(ls))
process() {
local year=$(stat --format=%y ${target})
year=${year%%-*}
mkdir ${year} 2> /dev/null
mv -- ${target} ./${year}/${target}
}
_iterate_targets process ${targets[@]}
}
2024-01-27 19:42:37 +03:00
# Copy files from current year to the named dir.
function group_year_current() {
local IFS=$'\n'
local targets=(${@})
[[ "${targets}" = "" ]] && targets=($(ls))
local today="$(date +%Y)"
mkdir ${today} 2> /dev/null
process() {
local year=$(stat --format=%y ${target})
year=${year%%-*}
2024-01-27 19:46:57 +03:00
if [[ "${year}" = "${today}" ]]; then
2024-01-29 04:12:31 +03:00
rcp -- ${target} ./${today}/
2024-01-27 19:46:57 +03:00
else
_iterate_skip
fi
2024-01-27 19:42:37 +03:00
}
_iterate_targets process ${targets[@]}
}