mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-04 09:14:21 +03:00
12 lines
206 B
Bash
Executable File
12 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
# $1 name of the variable
|
|
# $2 input path
|
|
|
|
echo "extern const char $1[];"
|
|
printf "const char %s[] = R\"(" "$1"
|
|
grep -v '^ *#' < "$2" | while IFS= read -r line; do
|
|
echo "$line"
|
|
done
|
|
echo ")\";"
|
|
|