Feat: complete the docs

This commit is contained in:
2025-04-14 09:02:16 +08:00
commit a7c41e264b
37 changed files with 1261 additions and 0 deletions

9
run.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env -S bash
JOBS=$(find . -type f -name '*.fio')
for job in ${JOBS[@]}; do
output="$(sed -rn 's/(.*)\.fio/\1.output/p' <<< "$job")"
echo "Running $job, writing result into $output"
sudo $(which fio) "$job" > "$output"
done