Skip to content

Instantly share code, notes, and snippets.

@alishir
Last active December 17, 2015 18:59
Show Gist options
  • Save alishir/5656765 to your computer and use it in GitHub Desktop.
Save alishir/5656765 to your computer and use it in GitHub Desktop.
XLS to CSV for decision analysis ...
#!/usr/bin/env bash
awk -F, '
BEGIN {
printf("\"id\",\"choices\",\"group\"\n");
}
{
if (NR > 1)
{
str = "";
for(i = 7; i <= NF; i++)
{
str = str $i;
gsub("\"", "", str);
sub(/[0-9]+/, "", str);
};
printf("\"%d\",\"%s\",\"control\"\n", NR - 1, str);
}
}' addiction.csv > addiction_control.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment