summaryrefslogtreecommitdiffstats
path: root/.local/bin/moveallfileshere
blob: 7761ddaf70334d1d1e366f0ba6dfeace171ae6d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

#Description: Moves all files in all subdirectories to the current directory.

#Axioms:

#Dependencies: 


find . -iname "*.*" -exec mv {} . \;