forked from bartvdbraak/blender
5 lines
122 B
Bash
5 lines
122 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
find ./include/ -type f | sed -r 's/^\.\///' > files.txt
|
||
|
find ./lib/ -type f | sed -r 's/^\.\///' >> files.txt
|