Files
ladybird/Libraries/LibHTML/Scripts/GenerateStyleSheetSource.sh
2020-03-07 10:27:02 +01:00

11 lines
191 B
Bash
Executable File

#!/bin/sh
echo "namespace Web {"
echo "extern const char $1[];"
echo "const char $1[] = \"\\"
grep -v '^ *#' < "$2" | while IFS= read -r line; do
echo "$line""\\"
done
echo "\";"
echo "}"