Skip to content
Permalink
172417d1b2
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
5 lines (5 sloc) 157 Bytes
#!/bin/bash
awk -F "\"*,\"*" '{print $1,$9,$14}' scan-01.csv > temp2.csv
sed -e 's/\s\+/,/g' temp2.csv > isolated.csv
rm temp2.csv && rm scan-01.csv
exit 0