File size: 225 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
# Goes through all subfolders of $folder and moves all files into a new "input" subdirectory


folder=scope-hoisting

set -e
shopt -s extglob

for f in "$folder"/*; do
  mkdir -p "$f/input"
  mv "$f"/!(input) "$f"/input
done