Peng Yu <[email protected]> ha escrit: > I can use the following command to exclude *.exe files. But if I only > want *.exe files, how to do it?
Use find: find . -name '*.exe' | tar -cjvf abc.tar.bz2 -T - --no-recursion Regards, Sergey
Peng Yu <[email protected]> ha escrit: > I can use the following command to exclude *.exe files. But if I only > want *.exe files, how to do it?
Use find: find . -name '*.exe' | tar -cjvf abc.tar.bz2 -T - --no-recursion Regards, Sergey