mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-30 03:01:39 +00:00
6 lines
126 B
Bash
Executable file
6 lines
126 B
Bash
Executable file
#!/bin/bash
|
|
if [ $# -ge 1 ]; then
|
|
for rstin; do genrst $rstin; done
|
|
else
|
|
for rstin in *.rst.in; do genrst $rstin; done
|
|
fi
|