Skip to content

Instantly share code, notes, and snippets.

@pklall
pklall / interns.sh
Created January 27, 2013 22:33
Bash script to reformat MSFT 2013 intern data to a cleaner csv format
#!/bin/bash
# Usage: ./interns.sh interns.txt
# loop over all lines of the file
while read line
do
# ignore blank lines
if [ "$line" == "" ]
then
continue