1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 23:15:08 +00:00
serenity/LibHTML/Scripts/GenerateStyleSheetSource.sh
2019-06-21 20:55:41 +02:00

10 lines
146 B
Bash
Executable file

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