summaryrefslogtreecommitdiff
path: root/mmv
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2025-07-26 03:57:54 +0100
committerIan C <ianc@noddybox.co.uk>2025-07-26 03:57:54 +0100
commit2450a61db55c13ffc5573e2768506d6dc7f1d8db (patch)
treede8dbc7f80c2d17f8b8534e5b36831ceaa8c1ea9 /mmv
parentd1718c3e581271de9014ab2f2b41e69c9899f4ac (diff)
Added unzip_tree.sh and changed mcp and mmv so they quote filenamesHEADmaster
Diffstat (limited to 'mmv')
-rwxr-xr-xmmv2
1 files changed, 1 insertions, 1 deletions
diff --git a/mmv b/mmv
index 06914f2..7792a94 100755
--- a/mmv
+++ b/mmv
@@ -17,5 +17,5 @@ shift
for i in $* ; do
new=$(echo $i | sed "s/$from/$to/g")
echo mv $i $new
- mv $i $new
+ mv "$i" "$new"
done