Serenity Operating System
at hosted 10 lines 191 B view raw
1#!/bin/sh 2 3echo "namespace Web {" 4echo "extern const char $1[];" 5echo "const char $1[] = \"\\" 6grep -v '^ *#' < "$2" | while IFS= read -r line; do 7 echo "$line""\\" 8done 9echo "\";" 10echo "}"