7 lines
104 B
Bash
7 lines
104 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for i in kernel-*.config; do
|
||
|
NEW=kernel-$VERSION-`echo $i | cut -d - -f2-`
|
||
|
mv $i $NEW
|
||
|
done
|