分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.youkuaiyun.com/jiangjunshow
也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!
用tar命令(tar -cvfz src.tar.gz src)去压缩一个目录,遇到错误"
Error exit delayed from previous errors"
原因选项"f" 表示The archive file name is given on the command line (required whenever the tar output is going to a file),f后边需要跟压缩文件的名字。
所以把tar命令从"tar -cvfz src.tar.gz src"改成"tar -czvf src.tar.gz src"后,就不会遇到那个错误了。
给我老师的人工智能教程打call!http://blog.youkuaiyun.com/jiangjunshow
