11 lines
133 B
Bash
Executable File
11 lines
133 B
Bash
Executable File
#!/bin/env bash
|
|
|
|
files=./embed/*
|
|
|
|
touch embed_header.h
|
|
echo "" > embed_header.h
|
|
|
|
for f in $files; do
|
|
xxd -i >> embed_header.h
|
|
done
|