1
0
forked from rpms/kernel
kernel/SOURCES/generate_all_configs.sh
2021-09-15 09:48:13 +00:00

7 lines
112 B
Bash
Executable File

#!/bin/sh
for i in ${NAME}-*.config; do
NEW=${NAME}-${VERSION}-`echo $i | cut -d - -f2-`
mv ${i} ${NEW}
done