标签: shell jar find
有人可以使用find命令帮助创建一个不包含目录的jar文件。任何帮助表示赞赏。提前感谢
类似于以下我想在jar中编写的命令
tar --exclude="*/*/c" --exclude="*/*a" -cvf name *
答案 0 :(得分:0)
尝试一下:
jar cf test.jar `find . -not -path "*/*/c" -not -path "*/*a"`