gpt4 book ai didi

linux - 用于按名称删除文件夹中文件的 SSH 命令

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

我有一个包含超过 5000 个文件的文件夹。所有文件名都是数字(例如:132455.jpg)并且想要删除名称低于特定数字的所有文件(例如:删除名称超过 15000 的所有文件)最快、最简单的方法是什么?

PS:抱歉,我是这方面的新手,这个 SSH 业务看起来很吓人,但需要快速清理这个目录,因为它被文件塞满了

最佳答案

这可以在纯 bash 中轻松完成。

for f in *; do
#for every file in current directory
if [[ ${f%.*} -lt $yourNumber ]]; then
#if the current filename minus the extension is less than $yourNumber
rm "$f"
#remove the file
fi
done

要通过 ssh 执行此操作,我们可以 ssh yourUser@yourHost\"/cd dir/to/process; for f in *; do if [[ ${f%.*} -lt yourNumber ]]; then rm "$f"; fi; done\"

关于linux - 用于按名称删除文件夹中文件的 SSH 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28741209/

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