mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
733cbb3197
Using hidden files are rather antisocial, and rather pointless in this particular context. Change .stdout and .stderr to simply stdout and stderr. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
10 lines
215 B
Bash
Executable File
10 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
for f; do
|
|
if [ -e "$f".asm ]; then
|
|
# For safety...
|
|
echo "$0: $f already exists" 1>&2
|
|
exit 1
|
|
fi
|
|
echo ";Testname=test; Arguments=-fbin -o$f.bin; Files=stdout stderr $f.bin" > "$f".asm
|
|
done
|