Skip to content

Instantly share code, notes, and snippets.

@chasmfiend
Last active December 20, 2015 03:39
Show Gist options
  • Save chasmfiend/6065453 to your computer and use it in GitHub Desktop.
Save chasmfiend/6065453 to your computer and use it in GitHub Desktop.
Start template for AWK file
BEGIN {
# The Field Separator. Should almost always be left as a tab.
FS = "\t";
}
# ROW-BY-ROW PROCESSING
{
}
END{
}
function testFunction(){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment