📅  最后修改于: 2022-03-11 14:50:58.662000             🧑  作者: Mango
#Redirect data to a file
SomeCommand > SomeFile.txt
#Or if you want to append data:
SomeCommand >> SomeFile.txt
#If you want stderr as well use this:
SomeCommand &> SomeFile.txt