모든 XML 파일 이름의 공백을 바꿔야하는 쉘 스크립트를 시도했습니다.
for xml_file in $(find $1 -name "* .xml" -type f);
do
echo "removing spaces from XML file:" $xml_file
mv "$xml_file" "${xml_file// /_}";
done
이름이 xml 파일이 있고 xy z.xml
다음을 제공 한다고 가정 해보 십시오.
removing spaces from XML file: /home/krishna/test/xy
mv: cannot stat `/home/krishna/test/xy': No such file or directory
removing spaces from XML file: .xml
mv: cannot stat `z.xml': No such file or directory