How can I move all files except one? I am looking for something like:
'mv ~/Linux/Old/!Tux.png ~/Linux/New/'
where I move old stuff to new stuff -folder except a Tux.png. !-sign represents a negation. Is there some tool for the job?
|
3
|
|
|
|
|
|
I would go with the traditional find & xargs way:
One comment notes that the mv
|
||||||||
|
|
|
If you use bash and have the
|
||||||||||
|
|
|
The find command lists all regular files and the fgrep command filters out any Tux.png. The backticks tell mv to move the resulting file list. |
||||
|
|
|
For bash, sth answer is correct. Here is the zsh (my shell of choice) syntax:
Requires |
||
|
|
|
How about you move everything in the folder and then just move Tux.png back? I can't think of any shell syntax to say "everything except ..." offhand. |
||
|
|
|
|
A quick way would be to modify the tux filename so that your move command will not match. For example:
|
||||||||
|
|
|
Back in the late 1980s, I had a DOS tool that would have done the trick: it was called "no.exe". The syntax was simple: "no Tux.png move * \somefolder". I realize that doesn't help much here, but just in case someone walks through with a time machine... |
||
|
|
|
|
The following is not a 100% guaranteed method, and should not at all be attempted for scripting. But some times it is good enough for quick interactive shell usage. A file file glob like
(which will match all files with names starting with a, b or c) can be negated by inserting a "^" character first, i.e.
I sometimes use this for not matching the "lost+found" directory, like for instance:
Of course if there are other files starting with l I have to process those afterwards. |
||
|
|
|
|
Put the following to your .bashrc
It extends regexes. You can then move all files except one by
|
||
|
|