mirror of
https://github.com/Michaelangel007/apple2gs_shr_converter.git
synced 2024-11-27 20:50:06 +00:00
12 lines
325 B
Bash
Executable File
12 lines
325 B
Bash
Executable File
#!/bin/sh
|
|
# kill.sh - house-cleaning script
|
|
# cleans unwanted input and output from working directory
|
|
# must be run from the command line
|
|
# killpalette.sh must also be run after kill.sh to remove unused external palettes
|
|
if [ ! -z "$1" ]; then
|
|
find -iname $1* -exec rm {} \;
|
|
else
|
|
echo "no args"
|
|
fi
|
|
# this is the end
|