Skip to content

Instantly share code, notes, and snippets.

@ibbo
Created August 24, 2017 14:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ibbo/f5560705c522ae08b9cbb549b9a4bd0e to your computer and use it in GitHub Desktop.
Save ibbo/f5560705c522ae08b9cbb549b9a4bd0e to your computer and use it in GitHub Desktop.
#!/usr/bin/awk -f
! /#include_code/ { print $0 }
/#include_code/ {
i=0
while(( getline line<"test_file.js") > 0 ) {
if (i == 0) printf "\"" line "\""
else printf ",\n\"" line "\""
i=i+1
}
printf "\n"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment