Hi

I've been using some Git Bash in a very basic way to split up text files like this:

Code:
split myfile.txt -l 10000 --additional-suffix=.csv
I thought it would be useful to get this functionality in a vb.net program. I've used a steamreader in the past do this sort of thing, but Git Bash is so quick I thought I would create a simple windows form app to allow the user to input the file name and split size, then run git-bash.exe as a process with the variables.

Could anyone tell me how to do this? - I don't know how to go about passing the variables to Git Bash.

Thanks!