A form of redirection used in shell scripts. The >> operator is similar to the > operator except instead of overwriting an existing file it will append the data to the end.

The bitwise operator in C/C++ that shifts bits to the right. Shifting the bits of an integer to the right is equivalent to dividing by powers of two. For example:

x >> y == x / 2y

Note that this does not happen if the integer is signed.

Log in or register to write something here or to contact authors.