-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
If you'd like to keep the zeros from your imported data (instead of dashes or whatever), follow these instructions: | ||
|
||
Add this underneath "# use the unix command cut for this" in mergeorama.sh | ||
|
||
# convert dashes back to zero | ||
perl -pi -e 's/-/0/g' ../output.csv | ||
|
||
---------------------------------------- | ||
|
||
If it isn't working, make sure you've emptied out the files in the data folder, which may contain the remnants of earlier attempts to parse the data. |