shell 中如何去掉字符串中间的空格

2025-04-03 03:00:04
推荐回答(2个)
回答1:

先建脚本:clearspace.sh
给脚本添加执行权限 chmod +x clearspace.sh
编辑脚本内容:

touch tmpFile # 建临时文件
sed 's/\ //g' $1 >temFile #sed s命令 将空格替换 重定向到临时文件
cat temFile >$1 #覆盖原文件
rm -f temFile #删除临时文件
echo 'OK,DONE!'

执行脚本 ./clearspace.sh souceFile

回答2:

echo aff ffff | sed 's/[[]]//g'