5 lines
104 B
Bash
Executable File
5 lines
104 B
Bash
Executable File
#!/bin/sh
|
|
cc -o ascii ascii.c && ./ascii > table
|
|
cc -DRAW -o ascii ascii.c && ./ascii > raw
|
|
rm -f ascii
|