mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-12-12 03:13:52 +08:00
14 lines
158 B
Bash
14 lines
158 B
Bash
#!/bin/sh
|
|
|
|
FILES=`find . -name ChangeLog -print`
|
|
|
|
header=/tmp/revheader
|
|
|
|
for i in $FILES
|
|
do
|
|
echo $i
|
|
bk edit $i
|
|
cat $header $i > $i.new
|
|
mv $i.new $i
|
|
done
|