Guest User

Untitled

a guest
Oct 20th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. [muk@kunkku-tki tmp]$ tar --exclude='.//a/dir' -cvf test.tar .
  2. ./
  3. tar: ./test.tar: file is the archive; not dumped
  4. ./a/
  5. ./a/b
  6. ./a/dir/
  7. ./a/dir/c
  8. [muk@kunkku-tki tmp]$ tar --exclude='./a/dir' -cvf test.tar .
  9. ./
  10. tar: ./test.tar: file is the archive; not dumped
  11. ./a/
  12. ./a/b
  13. [muk@kunkku-tki tmp]$
Add Comment
Please, Sign In to add comment