Forum Discussion
Altera_Forum
Honored Contributor
8 years agoThe output of teh qsys-script call goes into STDERR.
Try to append "2>&1" after your command. This combines STDOUT and STDERR to STDOUT. If you are just interested in your own output from your script and not from qsys-script try to append just: "2>err" or "2>/dev/null". I tested both successfully.