From 27e8345502cb7c6f7e961c1a9b38fe1001486bb8 Mon Sep 17 00:00:00 2001 From: xyz Date: Sat, 30 Oct 2021 01:03:47 -0700 Subject: improve mvt, use -- outside, so I can use -f or -i switch --- home/xyz/.local/bin/mvt | 3 ++- home/xyz/.local/bin/orgext | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'home/xyz/.local/bin') diff --git a/home/xyz/.local/bin/mvt b/home/xyz/.local/bin/mvt index eefc19b0..318edf69 100755 --- a/home/xyz/.local/bin/mvt +++ b/home/xyz/.local/bin/mvt @@ -3,4 +3,5 @@ dist="$1" shift -mv -- "$@" "$dist" +# not use -- here, use -- when use mvt, so I can specify -f or -i switch before -- when use mvt +mv "$@" "$dist" diff --git a/home/xyz/.local/bin/orgext b/home/xyz/.local/bin/orgext index 4f8153b2..8f00804f 100755 --- a/home/xyz/.local/bin/orgext +++ b/home/xyz/.local/bin/orgext @@ -1,14 +1,14 @@ #!/bin/sh outdir () { - find . -type f -execdir mvt "$PWD" '{}' \+ + find . -type f -execdir mvt "$PWD" -- '{}' \+ find . -mindepth 1 -maxdepth 1 -type d -execdir rmdir -- '{}' \+ } indir () { # https://stackoverflow.com/questions/1842254/how-can-i-find-all-of-the-distinct-file-extensions-in-a-folder-hierarchy find . -maxdepth 1 -type f | awk -F. '!a[$NF]++{print $NF}' | xargs mkdir -- - find . -mindepth 1 -maxdepth 1 -type d -execdir basename -az -- '{}' \+ | xargs -0 -I _ find . -maxdepth 1 -type f -name '*._' -execdir mvt '_' '{}' \+ + find . -mindepth 1 -maxdepth 1 -type d -execdir basename -az -- '{}' \+ | xargs -0 -I _ find . -maxdepth 1 -type f -name '*._' -execdir mvt '_' -- '{}' \+ } case "$1" in -- cgit v1.2.3-70-g09d2