How do i a move files from a folder to the

i have a lot of files in a folder (i cant rename one by ) any other solutions?

Where do you want to move them?

In Unix, you can use the wildcard operator, *, in some commands. For example, to move all non-dot files in /app/build to /tmp, you can run mv /app/build/* /tmp.

3 Likes

the main folder of the app

Yep. This seems to be right. I researched and heard this would work in the terminal:

mv ~/folderwithallthefiles/* ~/newfolder
1 Like