mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
e338dd4672
functions. Added example script output to figures.
10 lines
198 B
Bash
Executable file
10 lines
198 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# This script is in the public f'ing domain.
|
|
# You can burn it to a CD and use it as a
|
|
# frisbee for all I care.
|
|
|
|
for example in *.gib; do \
|
|
carne "$example" >"${example}.out"; \
|
|
done
|
|
|