1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 12:44:58 +00:00
serenity/Meta/text-to-cpp-string.sh

11 lines
202 B
Bash
Executable file

#!/bin/sh
# $1 name of the variable
# $2 input path
echo "extern const char $1[];"
echo -n "const char $1[] = R\"("
grep -v '^ *#' < "$2" | while IFS= read -r line; do
echo "$line"
done
echo ")\";"