4 lines
89 B
Bash
Executable File
4 lines
89 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
find . -regex ".*[0-9]\{3\}" -type d | xargs -P 8 -I {} -- ./fmt {}
|