forked from rpms/kernel
7 lines
112 B
Bash
Executable File
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
|