Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想自动备份我的路由器的启动配置,但它会覆盖以前的配置。如何将命名日期和时间保存到备份文件以避免覆盖。请帮忙!
命令时钟将帮助您处理与时间相关的事情。由于一切都是字符串,您只需将格式化的日期插入要打开的文件名即可。w+表示打开文件进行写入,如果它不存在则创建它。
w+
#!/usr/bin/tclsh set f [open "[clock format [clock seconds] -format "%Y%m%d-%H%M%S"].txt" w+] puts $f "foo" close $f