Skip to content

Instantly share code, notes, and snippets.

@matthewpizza
Created December 3, 2013 15:14
Show Gist options
  • Save matthewpizza/7770879 to your computer and use it in GitHub Desktop.
Save matthewpizza/7770879 to your computer and use it in GitHub Desktop.
Problem: When I make a gzipped tar file in OS X and expand it in Ubuntu there are duplicates of every file with `._` prepended to the file name. Solution: Skip those stupid `._` files
tar -xzpvf mytarfile.tgz --exclude="._*"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment