gpt4 book ai didi

linux - mv 来自文本板的包含空格和特殊字符的文件

转载 作者:太空宇宙 更新时间:2023-11-04 05:14:47 25 4
gpt4 key购买 nike

如何移动( mv )具有空格和特殊字符的文件 - linux 命令

  • file.txt 包含以下内容。

    04 安全@test.pdf

    05 安全@test.pdf

我的命令如下:

cat $DIR/file.txt | read line; do

mv $line ""$line{//[ ()@$]/_}" /$DIR/OUT done

非常感谢您的专业知识,

最佳答案

此命令从 file.txt 读取每一行,然后重命名文件,用 _ 替换每个特殊字符。

$ while read line ; do mv "$DIR/$line" "$DIR/${line//[ ()@$]/_}" ; done < file.txt 

关于linux - mv 来自文本板的包含空格和特殊字符的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50712183/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com