Given a command that takes a single long string argument like:
mycommand -arg1 "very long string which does not fit on the screen"
is it possible to somehow split it in a way similar to how separate arguments can be split with \
.
I tried:
mycommand -arg1 "very \
long \
string \
which ..."
but this doesn't work.
mycommand
is an external command so cannot be modified to take single arguments.