6 lines
162 B
Bash
6 lines
162 B
Bash
while read inum rest; do
|
|
mkdir -p /mnt/recovered/apr29/${inum}
|
|
python3.12 dump_tree.py ${inum} /mnt/recovered/apr29/${inum}/ &
|
|
done < true_roots.txt
|
|
wait
|