6 lines
No EOL
239 B
Bash
Executable file
6 lines
No EOL
239 B
Bash
Executable file
#!/bin/bash
|
|
find ./src/libs/nim/ -type f -name "*.nim" | while IFS= read -r file; do
|
|
# Inside this loop, $file will contain the path to each found file
|
|
nim --out:./docs/ doc $file
|
|
# You can perform operations on $file here
|
|
done |