Comment by ramses0
Next level:
foo -a -b \
| bar -c -d -e \
| baz -e -f \
&& echo "DONE." # && /bin/true
...means you can safely (arbitrarily) add more intermediate commands to the pipeline w/o having to worry about modifying the trailing slash (eg: `yyp` won't cause a syntax error).
A pattern I typically do
or so, which is less verbose but short and sweet. Obviously slightly different, but : (no-op) seems applicable to your situation.