After enough searching I found my answer. For anyone curious, this is
what I did.
1. Enable \write18 priveledges (add "--enable-write18" to the command
line when building the document)
2. added the following command to my latex document:
\immediate\write18{sketch airfoil.txt Sketch1.txt > blade.tex}
I also wanted to define terms inside my latex file. I'm using windows,
so I also wrote out a file with the definitions I wanted to change
rapidly doing the following:
\immediate\write18{echo def theta \thetaVal def beta \betaVal >
opts.txt}
\immediate\write18{sketch opts.txt airfoil.txt Sketch1.txt >
simple.tex}
All files are in the same directory. This is probably bad form in some
way, but hopefully this helps someone else as well.