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

echo "extern const char $1[];"
echo "const char $1[] = \"\\"
IFS=$'\n'
for line in $(cat $2); do
    echo $line"\\"
done
echo "\";"