Wednesday, February 4, 2015

bash: Simple way to move files only from one location to another

In the case you have many files to move, and your folder tree has nothing special, use

mv ./*.* destination_path

This will also move directories containing a dot in the name and will ignore files without extensions...quick hack

No comments:

Post a Comment