Another way to approach this problem is to consider your dataset as groups of four lines
Using awk:
awk 'NR%4!=0 { printf "%s", $0; next } { sub(/,$/,"") }1' file
Results:
"Shimshon A","(blank)","November 24, 2012","13,481"
"jonathan t","Laguna Niguel, CA","November 24, 2012","13,480"
"scott b","Sussex, NJ","November 24, 2012","13,479"
Explanation:
As you can see, this uses the modulus operator to 'grep' every line that is not exactly divisible by four (i.e. not an integer). The 'printf' statement prints these lines alongside each other. 'next' skips when successful. At all other times the lagging comma is removed, and the line is printed (the 1 at the end of the statement is shorthand to print by default). Any question, please feel free to ask. HTH.
You could have also integrated the adding of commas and double quotes, by simply changing the printf statement:
awk 'NR%4!=0 { printf "\"%s\",", $0; next } { printf "\"%s\"\n", $0 }' file
Using GNU sed:
sed -n 'N;N;N;s/\n\|,$//g;p' file
Or prior to the addition of the commas and double quotes:
sed -n 'N;N;N;s/^\|$/"/g;s/\n/","/g;p' file
Results:
"Shimshon A","(blank)","November 24, 2012","13,481"
"jonathan t","Laguna Niguel, CA","November 24, 2012","13,480"
"scott b","Sussex, NJ","November 24, 2012","13,479"
Explanation:
Although this solution is much shorter, it has the same sentiment as described using awk, above. For the first sed statement: disable default printing with the -n flag. Append three lines to pattern space. On the fourth line, remove newline characters and lagging commas. Then print.
The second sed statement is much the same; append three lines to pattern space. On the fourth line, replace the start and ends of the line with double quotes. Also replace newline characters with double quote, comma, double quote; globally. Then print. HTH.
From the comments:
From my experience sorting using awk (although possible) can become difficult to read rather quickly. Here's a way that lets you re-use some of the previous code we've written using two other tools, paste and sort:
paste <(awk -F, 'NR%4==2 { print $NF }' file) <(awk 'NR%4!=0 { printf "\"%s\",", $0; next } { printf "\"%s\"\n", $0 }' file) | sort | sed 's/[^"]*//'
It should be noted that this command uses input prior to the addition of commas and double quotes -- As you can see it uses the second awk command described above. It works by pasting (with paste) the 'state' ahead of each of the results we obtained earlier. This then allows the line to be alphabetically sorted using sort. Once the input has been sorted, sed is used to strip off this info.