Files
2015-07-12 13:04:21 -05:00

7 lines
158 B
Bash
Executable File

#!/bin/bash
# Accepts a .pyx file path and deletes an associated .c file, if present.
filename="${1%.*}".c
if [ -e "$filename" ]; then
rm -f "$filename";
fi