mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-06 15:51:25 +00:00
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
|
|
|