I would like to embed a long command like this in a bash script:
mycommand \\ --server myserver \\ --filename extremely/long/file/name/that/i/would/like/
One can also use an array variable
file=(extremely/long/file/name /that/i/would/like/to/be/able/to/break /up/if/possible) IFS='' echo mycommand\ --server myserver\ --filename "${file[*]}"\ --flag flag