I have various folders each containing files as such:
/.example1/example1.txt /.example1/example2.txt /.example2/example1.txt /.example2/example2.txt etc. And want to find a way to move each of the files into a subfolder of its parent folder, eg:
/.example1/folder/example1.txt /.example1/folder/example2.txt /.example2/folder/example1.txt /.example2/folder/example2.txt etc. Any ideas on a quick and simple way to do this for large amounts of files? I've already tried playing around with find but without much luck.