how do i tar a directory of files and folder without including one folder
views:
27answers:
1
+2
A:
In a UNIX shell, you would use:
tar --exclude {dir-name} {dir-to-tar} > {tar-file}
where {dir-name} is the directory (or file) to exclude.
andrewmu
2010-07-14 10:43:54
afaik I know --exclude is exclusive to gnu tar.
pra
2010-07-15 19:21:40