--exclude works reliable for me. can you give us an example of an --exclude and the file name that tar outputs when adding it?
Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
I don't know what fd does, but at a guess maybe what you're missing is that tar includes all the files in directories you give it? So if you exclude 'foo/bar' but include 'foo' then foo/bar will be in your tar file.
What I do is basically tar cf `ls ~ | grep -v $files_to_exclude`
but if you want to exclude something that isn't a top-level directory you'd need to get slightly more fancy.
...more fancy such as using tar -X, which works for me. I'd never actually tried it before. The 'weird globbing' it uses is regular expressions, which are worth learning how to use. Run grep "$expression" $_tmpfile
where $expression is a line from your exclude file to see which files it's going to match and exclude.
Thanks!
I save it for now, until i work on it again. Possibly the wildcards thing. And that tar includes files of folders given too, from someone else (how to work with that).
How to reliably(!) exclude files from a list in tar?
You delete the entire file because the format and tools are hard to deal with for basic operations like this one. :)
Just kidding... but we know there's some truth to it.