025 bulk delete mac file name space

One,

We found that given in the preparation of Wang Lu Corpus information recording files with a lot of space, do not like this, but not under the terms of mac search and find, so it wants to delete all the following command:

find . -name "* *"|
while read name
do
	na=$(echo $name|sed -e 's/^..//g'|tr -d "[:space:]")
	mv "$name" $na
done

Results are as follows:

 

Guess you like

Origin www.cnblogs.com/itcomputer/p/11425621.html
Recommended