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