Help on MOVE command

Hi all,

I'd like to use advanced features of mv command.
Is it possible to move all files except one based on his extension ?

I'm searching something like "mv *.* -*.xxx /dest_dir" ...

Thanks all
Michel.

I don't beleive that mv has that capability. It might be easier to move everything

[code]mv * /dest/directory[code]
and then move your exception back

[code]mv /dest/directory/*.sav /orig/dir[code]
mv doesn't modify the last modified date.

Thx for your quick reply ...

I've already thought about that :slight_smile:
It would be the easiest way ...

Many thx
Michel