Reputation: 1714
I am looking to move all files in one specific directory up one directory with the terminal. There are hidden files and that is why I want to use the terminal. Looking for something like:
mv ./ to ../
Not certain on the above. Any help would be appreciated.
Upvotes: 6
Views: 10614
Reputation: 242
mv ./* ../
mv ./.* ../
to move all hidden files and foldersUpvotes: 0