lamme2024-scientific-project/folder-structure.sh

8 lines
138 B
Bash
Raw Normal View History

2024-03-21 19:36:09 +01:00
#!/bin/sh
find ./content -type d > folder_list.txt
mkdir -p build
cd build
cat ../folder_list.txt | xargs mkdir -p
rm ../folder_list.txt