forked from vitalif/vitastor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
239 B
14 lines
239 B
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
gcc -E -o fio_headers.i fio_headers.h
|
||
|
|
||
|
rm -rf fio-copy
|
||
|
for i in `grep -Po 'fio/[^"]+' fio_headers.i | sort | uniq`; do
|
||
|
j=${i##fio/}
|
||
|
p=$(dirname $j)
|
||
|
mkdir -p fio-copy/$p
|
||
|
cp $i fio-copy/$j
|
||
|
done
|
||
|
|
||
|
rm fio_headers.i
|