![Sin[x]](http://i.stack.imgur.com/Xui8H.png)
Show[Plot[Sin[x], {x, 0, \[Pi]}, PlotStyle -> Red,
PlotRange -> {{0, 2 \[Pi]}, {-1, 1}}],
Plot[Sin[x], {x, \[Pi], 2 \[Pi]}, PlotStyle -> Green,
PlotRange -> {{0, 2 \[Pi]}, {-1, 1}}]]
Is there a simpler way of doing this? Especially, one that does not require repeating the Plot command 2 times ;)

