暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

Linux 查找处理文件名后包含空格的文件

原创 不吃草的牛_Nick 2023-01-10
1455

当Linux下文件名中出现空格这类特殊情况话,如何查找或确认那些文件名后有空格呢? 又怎么批量替换处理掉这些空格呢?


方法1: 输入文件名后使用Tab键,如果使用Tab键后面出现\ \ \这样的可见字符,那么该文件名包含空格。
当然,这个方法弊端很大,例如,效率低下,不能批量查找,只有当你怀疑某个文件名后有空格,这个方法才比较凑效。
另外,不能查找文件名中间包含空格的文件名。如下测试所示:


[root@DB-Server kerry]# cat >"test.txt "<<eof
it is only for test!
eof

[root@DB-Server kerry]# cat >"tes t.txt"<<eof
it is only for test too!
eof

[root@DB-Server kerry]# ls test.txt
ls: test.txt: No such file or directory

[root@DB-Server kerry]# ls test
test~ test1.py test.py test.sh test.txt

[root@DB-Server kerry]# ls test.txt\ \ \ \
test.txt

[root@DB-Server kerry]# ls tes
test~ test1.py test.py test.sh tes t.txt test.txt


方法2: 使用find命令查找文件名中包含空格的文件。
[root@DB-Server kerry]# find . -type f -name "* *" -print
./test.txt
./tes t.txt


那么如何将这些空格替换掉呢? 下面脚本可以替换文件中间的空格,用下划线替换空格,但是只能替换文件中间的空格,
并不能替换文件名后面的空格。如下测试所示:


find . -type f -name "* *" -print |
while read name;
do
na=$(echo $name | tr ' ' '_')
if [[ $name != $na ]]; then
mv "$name" "$na"
fi
done


上面脚本只能将文件名中间有空格的替换为下划线。那么如何解决文件名后有空格的情况呢? 可以用其它shell脚本实现,如下所示:

rm -rf *

cat >"test.txt "<<eof
it is only for test!
eof

cat >"tes t.txt"<<eof
it is only for test too!
eof

find . -type f -name "* *" -print

for file in *; do mv "$file" `echo $file | tr ' ' '_'` ; done

find . -type f -name "* *" -print

ls -lrt
total 8
-rw-r--r-- 1 root root 0 Nov 13 10:04 test.txt
-rw-r--r-- 1 root root 0 Nov 13 10:04 tes_t.txt


如上所示,虽然文件名中间的空格被替换为了下划线,但是后面的空格没有替换为下划线,而是将那些空格直接截断了。Why?
下面使用sed命令也是如此

rm -rf *

cat >"test.txt "<<eof
it is only for test!
eof

cat >"tes t.txt"<<eof
it is only for test too!
eof

find . -type f -name "* *" -print

for i in *' '*; do mv "$i" `echo $i | sed -e 's/ /_/g'`; done

find . -type f -name "* *" -print

ls -lrt
total 8
-rw-r--r-- 1 root root 0 Nov 13 10:04 test.txt
-rw-r--r-- 1 root root 0 Nov 13 10:04 tes_t.txt


其实,这个是因为读取文件名是$file 与"$file"是不同的,$file不会识别文件名后面的空格,
而"$file"才会识别文件名后面的空格。所以上面脚本其实只是取巧而已。

rm -rf *

cat >"test.txt "<<eof
123
eof

for file in *; do echo "$file"; echo "$file" | wc -m ; done;
test.txt
13

for file in *; do echo $file; echo $file | wc -m ; done;
test.txt
9


所以,正确的替换空格的命令应该为如下:

方案1:
rm -rf *

cat >"test.txt "<<eof
123456
eof

find . -type f -name "* *" -print

for file in *; do mv "$file" `echo "$file" | tr ' ' '\n'` ; done

find . -type f -name "* *" -print

ls test.txt


方案2:
rm -rf *

cat >"test.txt "<<eof
123456
eof

find . -type f -name "* *" -print

for file in *' '*; do mv "$file" `echo "$file" | sed -e 's/ /n/g'`; done

find . -type f -name "* *" -print


但是对于文件名中间包含空格的情况,上面两个脚本都无法完美解决。如下所示:

rm -rf *

cat >"tes t.txt"<<eof
123456
eof

find . -type f -name "* *" -print

for file in *; do mv "$file" `echo "$file" | tr ' ' '_'` ; done

find . -type f -name "* *" -print

ls -lrt
-rw-r--r-- 1 root root 7 Jan 9 18:48 tes_t.txt


rm -rf *
cat >"tes t.txt"<<eof
123456
eof

cat >"test.txt "<<eof
654321
eof

find . -type f -name "* *" -print

for file in *; do mv "$file" `echo "$file" | tr ' ' '_'` ; done

find . -type f -name "* *" -print

ls -lrt
total 12
-rw-r--r-- 1 root root 0 Nov 13 15:59 tes_t.txt
-rw-r--r-- 1 root root 7 Nov 13 15:59 test.txt____


https://www.cnblogs.com/kerrycode/p/7827118.html

「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论