summaryrefslogtreecommitdiff
path: root/mvtr
diff options
context:
space:
mode:
authorXiao Pan <gky44px1999@gmail.com>2024-02-23 03:08:52 -0800
committerXiao Pan <gky44px1999@gmail.com>2024-02-23 03:08:52 -0800
commitdd78faaf40862bd1552ec36c41374b527f747284 (patch)
treeb914f890c545db7168984f7bcc15cfc7c976c1d3 /mvtr
parentc808bb6ee7f77f077308a1f06f63dbee6a928f6d (diff)
Reorganize shell scripts into sh dir, consider in the future fsh will have different kinds of files
Diffstat (limited to 'mvtr')
-rwxr-xr-xmvtr11
1 files changed, 0 insertions, 11 deletions
diff --git a/mvtr b/mvtr
deleted file mode 100755
index 28eebf0..0000000
--- a/mvtr
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-# can use ls pipe to sed pipe to bash, similar to eval? see comment at link:
-# link also show perl-rename approach
-# https://linuxconfig.org/rename-all-files-from-uppercase-to-lowercase-characters
-# if only change ' ' to '_' `rename` might be sufficient, for upper to lower case might need perl-rename if want concise
-
-# ./_filename will be renamed ./filename, not what I want, need improve
-# -exec can't replace -execdir here, can write a -exec version
-
-find "$@" -depth -execdir sh -c 'dest="$(echo "$1" | tr -d "\047" | sed -E -e "s/([[:lower:]])([[:upper:]])/\1_\2/g" | tr "[:upper:] " "[:lower:]_" | tr -s "[:punct:]" | sed -E -e "s#/-#/#g" -e "s/_([[:punct:]])/\1/g" -e "s/([[:punct:]])_/\1/g" | tr -s "[:punct:]")"; [ -e "$dest" ] || mv -v -- "$1" "$dest"' shell '{}' \;