No, when shifting, the 'new' bits are filled with '0' (or '1' if it's signed and right shift)
When rotating, the bit that leaves the byte/word etc is added to the end, so when shifting right, bit 0 (LSB) becomes MSB.
So there's quite a difference in usage too