All commands tested on Mac OS Monterey / Jul 02, 2024

How to create a tar archive excluding multiple directories

Create a tar archive called directory.tar of directory/ excluding the directory/backups and directory/dist directories.

You can use this short tar command.

              
                  tar --exclude directory/backups/ --exclude directory/dist/ -cvf directory.tar directory/
              
          

Or this more verbose tar command.

              
                  tar --exclude directory/backups/ --exclude directory/dist/ --create --verbose --file directory.tar directory/
              
          

Options explained

  1. --exclude tells tar not to process files or directories that match the specified pattern
  2. -c or --create tells tar to create a new archive
  3. v or --verbosetells tar to produce verbose output
  4. f or --filetells tar that the next parameter will be the tar file to create, extract, append to, list, etc.

More commands for creating tar archives