Skip to content

Commit

Permalink
#80 - convert .raw file to windows format on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
kensoh committed Apr 30, 2018
1 parent c516af2 commit 0b6230a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tagui.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,8 @@ rem end of big loop for managing multiple data sets in datatable
:break_for_loop

rem additional windows section to convert unix to windows file format
gawk "sub(\"$\", \"\")" "%flow_file%.raw" > "%flow_file%.raw.tmp"
move /Y "%flow_file%.raw.tmp" "%flow_file%.raw" > nul
gawk "sub(\"$\", \"\")" "%flow_file%.js" > "%flow_file%.js.tmp"
move /Y "%flow_file%.js.tmp" "%flow_file%.js" > nul
gawk "sub(\"$\", \"\")" "%flow_file%.log" > "%flow_file%.log.tmp"
Expand Down

0 comments on commit 0b6230a

Please sign in to comment.