#!/bin/sh #Description: Moves all files in all subdirectories to the current directory. #Axioms: #Dependencies: find . -iname "*.*" -exec mv {} . \;