Shell command to tar directory excluding certain files/folders

后端 未结 28 2220
春和景丽
春和景丽 2020-11-27 08:31

Is there a simple shell command/script that supports excluding certain files/folders from being archived?

I have a directory that need to be archived with a sub dire

28条回答
  •  暖寄归人
    2020-11-27 09:16

    Your best bet is to use find with tar, via xargs (to handle the large number of arguments). For example:

    find / -print0 | xargs -0 tar cjf tarfile.tar.bz2
    

提交回复
热议问题