If you want to run the julia script from a command line then just do
/path/to/julia script-name.jl
In the shell of your choice.
If you want to run it from the julia repl then you want something like so:
julia> include("path/to/script-name.jl")
As to why your output is split like that I think we would need to see your code.