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.
我尝试使用 tar 压缩 MATLAB 中的文件夹。我想将当前日期指定为存档文件的名称。当我尝试
tar 'datestr(now)' FooFolder
什么都没发生。和
tar datestr(now) FooFolder
正如预期的那样,存档文件的名称是 datestr(now).tar。解决办法是什么?
文档很清楚,使用函数语法:
tar(tarfilename,files)
例子:
tar(datestr(now),'FooFolder')