> operator

(thing) by Baron_Saturday Wed Dec 06 2000 at 6:44:24
A form of redirection used in shell scripts. The > operator cause output to be redirected from stdout to the specified location

For Example:
ps > /tmp/processlist.txt
This will run the ps command but instead of displaying the output on the screen will save it to the file /tmp/processlist.txt. Note that if you redirect to an existing file it will overwrite that file. To append to an existing file try using the >> operator instead.
Y'know, if you log in, you can write something here, or contact authors directly on the site. Create a New User if you don't already have an account.