gpt4 book ai didi

bash - 附加日期的文件名有问题 -shell 脚本

转载 作者:行者123 更新时间:2023-11-29 09:30:35 31 4
gpt4 key购买 nike

我试图在 shell 脚本中将当前日期和时间附加到现有文件名,但我发现我的命令没有按预期工作。

例如,如果我的文件名为 f1.log,我需要将其与当前时间一起附加。此附加版本必须用于文件的进一步处理。

我尝试使用以下脚本但出现错误

    now=$(date +"%m-%d-%Y/%T")
echo hi >>time.log
mv "time.log" "time.$now.log" (error here : file or directory not found)
echo hello >> time.log$now (have to continue processing with new file)

最佳答案

文件名中不能有 / 字符。 mv 命令正在寻找一个以 date 输出的分钟、日期和年份命名的目录,并尝试创建一个以时间命名的文件。只需将格式更改为不在文件名中包含 /

关于bash - 附加日期的文件名有问题 -shell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13808300/

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