What is &> in makefile?
#1
What is &> in Makefile? I've been trying to Google this with no luck.
Reply
#2
Bash redirection:

Code:
&>filename
      # Redirect both stdout and stderr to file "filename."

i.e. rather than have output go to file and errors to screen, write everything to file.
Reply
#3
All righty, I gotcha. Thank you.
Reply

Logout Mark Read Team Forum Stats Members Help
What is &> in makefile?0