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