Shell command to tar directory excluding certain files/folders

后端 未结 28 2276
春和景丽
春和景丽 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-27 09:29

    This exclude pattern handles filename suffix like png or mp3 as well as directory names like .git and node_modules

    tar --exclude={*.png,*.mp3,*.wav,.git,node_modules} -Jcf ${target_tarball}  ${source_dirname}
    

提交回复
热议问题