My question may not be clear enough, so here's a specific example.
I have an rsync
bin\bash script with a ton of option switches.
Instead of:
rsync --recursive --times --update --chown=root,root --bwlimit=500
I'd like to be able to write my script like this:
rsync
--recursive
--times
--update
--chown=root,root
--bwlimit=500
That way, I can easily comment out or edit individual options if I need to.
Is there any way to do this?