可能重复:
GUI Twitter 客户端:我有哪些选择?
我们能否获得支持 Oauth 的 Twitter 客户端列表?
侏儒:
KDE:
空气:
我希望能够从命令行确定文件具有什么标志。有没有办法确定这一点?另外,有没有办法从命令行应用标志?
我通常有一个 cron 作业,在我的 ~/Downloads 中删除超过 7 天的文件,但我希望能够只删除没有特定标志的文件(我的种子种子)。我一直在手动应用这些标志,但如果我也可以自动化,那就太棒了。
我通常的 cron 工作只是一个简单的 find 命令:
find /home/zach/Downloads/ -ctime +7 -exec trash {} \;
编辑:
我解决了我自己的问题。
奖金:
为了详细说明我在做什么,我用它deluge-torrent
来管理我的下载。我现在使用执行插件在洪流完成时运行此脚本:
#!/usr/bin/env bash
# deluge gives the download directory name as the third argument
gvfs-set-attribute -t stringv "$3" metadata::emblems ubuntuone-unsynchronized
然后我创建了我的trasher.sh
(这需要trash-cli
包):
#!/usr/bin/env bash
[[ "$(gvfs-info -a metadata::emblems $*)" =~ "ubuntuone-unsynchronized" ]] || trash "$*"
现在,我只是将我的 cron 修改为:
find /home/zach/Downloads/ -maxdepth 1 -ctime +7 -exec /home/zach/Scripts/trasher.sh {} \;
瞧!现在 Deluge 可以管理它的下载,而我的清理脚本可以安全地清理旧文件,而不会干扰种子种子。
我一直在用各种方法在 bash 中做这件事,我发现pgrep program > /dev/null || program
这是做这件事的最短/最优雅的方法。还有比这更好的方法吗?