我正在尝试使用 Windows 中的 tar 命令存档一些文件夹,并且我想排除当前文件夹中的目录,但不排除子文件夹中的目录。
下面的示例使用了此答案中描述的技术,但它似乎在 Windows 上不起作用:https://stackoverflow.com/questions/984204/shell-command-to-tar-directory-clusion-certain-files-folders
tar -c -f ../test.tar .
tar -t -f ../test.tar
./
./one/
./two/
./two/two.txt
./one/two/
./one/two/two.txt
tar --exclude "./two" -c -f ../test.tar .
tar -t -f ../test.tar
./
./one/