We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
echo foo >> file date >> file cat stuff >> file
{ echo foo date cat stuff } >> file
Rather than adding >> something after every single line, you can simply group the relevant commands and redirect the group.
>> something
This is mainly a stylistic issue, and can freely be ignored.