kernel/update_scripts.sh
2019-12-19 12:47:36 -06:00

12 lines
152 B
Bash
Executable file

#!/bin/bash
if [ -z $1 ]; then
exit 1
fi
TARGET=$1
for i in $RPM_SOURCE_DIR/*.$TARGET; do
NEW=$(echo $i | sed -e "s/\.$TARGET//")
cp $i $NEW
done