kernel/SOURCES/generate_all_configs.sh

7 lines
112 B
Bash
Raw Permalink Normal View History

2019-08-02 02:43:42 +00:00
#!/bin/sh
2020-01-21 20:39:33 +00:00
for i in ${NAME}-*.config; do
NEW=${NAME}-${VERSION}-`echo $i | cut -d - -f2-`
mv ${i} ${NEW}
2019-08-02 02:43:42 +00:00
done