To start at a specific line I would use:
$ vim FILE +LINE
But what parameter needs to be passed to vim to position the cursor in a certain colu
One way to do that would be:
vim "+call cursor(, )"
For completeness this is another way:
vim "+normal G|"