gpt4 book ai didi

bash - 将文件移动到 ~/.trash,具有唯一的文件名

转载 作者:行者123 更新时间:2023-11-29 09:12:00 25 4
gpt4 key购买 nike

我的 ~/.bashrc 中有以下别名

alias del="mv -t ~/.trash"

这会将文件或目录移动到 ~/.trash 文件夹。但是,如果我执行以下操作:

del test.txt
touch test.txt
del test.txt

第二个 del 调用覆盖了 ~/.trash 中已经存在的文件 test.txt,因此我丢失了备份。这当然是不受欢迎的行为。我正在寻找一种方法来调整我的别名,以便将移动到 ~/.trash 的文件附加到移动到那里的那一刻的日期和时间,从而产生一个唯一的文件名。有人知道如何做到这一点吗?我正在寻找一种简单的方法来调整别名,而不是大量的 bash 脚本。

最佳答案

您可以使用函数。还建议使用函数而不是别名。

function del {
local F
for F; do
mv -- "$F" ~/.trash/"$F-$(exec date '+%F-%T')"
done
}

将它放在 .bashrc 中,并确保 .bash_profile sources .bashrc 也是如此。

参见 date manual (man date) 用于您可以使用的其他格式。

关于bash - 将文件移动到 ~/.trash,具有唯一的文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25305208/

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