4 lines
113 B
Plaintext
4 lines
113 B
Plaintext
|
#!/bin/sh
|
||
|
# Remove one level of folders
|
||
|
find -mindepth 1 -maxdepth 1 -exec sh -c 'mv -nv {}/* . && rm -dv {}' \;
|