How to move all files in a folder to a new subfolder

Posted Over 6 years ago. Visible to the public.

Let's say you have a folder images and want to to move all files in there to a new subfolder public.

cd images
mkdir public
mv !(public) public

The !(public) excludes the new subfolder itself from being moved.

Last edit
Over 6 years ago
Emanuel
Keywords
linux, bash
License
Source code in this card is licensed under the MIT License.
Posted by Emanuel to makandra dev (2017-09-12 08:14)