summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Scripts/GenerateStyleSheetSource.sh
blob: aef61fcfae5c10b2a87b02014d94a362ab332d0e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

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