I untarred something into a directory that already contained a lot of things. I wanted to untar into a separate directory instead. Now there are too many files to distinguish between. However the files that I have untarred have been created just now (right ?) and the original files haven’t been modified for long (at least a day). Is there a way to delete just these untarred files based on their creation information ?
|
feedback
|
|
Tar usually restores file timestamps, so filtering by time is not likely to work. If you still have the tar file, you can use it to delete what you unpacked with something like:
The above will work in most cases, but not all (filenames that have a carriage return in them will break it), so be careful. You could remove the directories by adding | |||||||||||||
feedback
|
|
There are several different answers to this question in order of increasing complexity. First, if this is a one off, and in this particular instance you are absolutely sure that there are no weird characters in your filenames (spaces are OK, but not tabs, newlines or other control characters, nor unicode characters) this will work:
All that egrepping is to skip out on all the subdirectories of the subdirectories. Another way to do this that works with funky filenames is this:
That will create a directory in which your archive has been expanded, but it sounds like you wanted that already anyway. It also will not handle any files who's names start with To make that method work with files that start with
Lastly, taking from Mat's answer, you can do this and it will work for any filename and not require you to untar the directory again:
| ||||
|
feedback
|
|
find . -mtime -1 -type f | xargs rm but test first with find . -mtime -1 -type f | xargs echo | |||||||
feedback
|