GenerateStyleSheetSource.sh 191 B

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