10
votes
How do I use sudo to redirect output to a location I don’t have permission to write to?
Your command does not work because the redirection is performed by your shell which does not have the permission to write to /root/test.out. The redirection of the output is not …
1
vote
paste without temporary files in Unix
Use named pipes (FIFOs) like this:
mkfifo fA
mkfifo fB
progA > fA &
progB > fB &
paste fA fB
rm fA fB
The process substitution for Bash does …
