vote up 0 vote down star

I have extended regexes enabled in my Bash by

shopt -s extglob

They may be useful in solving the problem.

I run the following unsuccessfully, since it moves also directories

$ mv `find . -maxdepth 1` django-tes/

I am trying to find all files except directories and move them to a directory called django-tes/.

How can you move all files except directories in a folder to a folder in terminal?

flag

1 Answer

vote up 3 vote down check

Try using find . -type f -maxdepth 1

link|flag
Thank you! Your code works. – Masi Apr 25 at 15:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.