8 lines
108 B
Bash
Executable File
8 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -f run ]; then
|
|
echo 'File not found. Make please!'
|
|
else
|
|
./run textures/green.png
|
|
fi
|