
December 21st, 2012, 10:48 AM
|
|
|
According to your posting history, all of your questions have been related to shell scripting, not Perl. Shell script questions are best asked in the Linux or UNIX topic areas.
Linux Help
UNIX Help
The focus of your question here is not language specific, so it's not much of a faux pas.
The > redirection operator will send the output to somefile.txt overwriting the file if it already existed, or creating it if it didn't exist.
The >> operator will append the output to the end somefile.txt, creating the file if it didn't already exist.
|