mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
11 lines
198 B
Bash
11 lines
198 B
Bash
|
#!/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
|
||
|
|