- Write output to file
The command output will be sent to the file, replacing its content, instead of the standard output.
<command> > /path/to/file
- Append output to file
The command output will be sent to the file, added at its end, instead of the standard output.
<command> >> /path/to/file
- Send output to an online pastebin
The command output will be sent to the pastebin instead of the standard output.
A link to the generated pastebin will be provided in the standard output.
<command> | curl -F 'clbin=<-' https://clbin.com